Skip to content

Commit

Permalink
🔧 tsconfig test 관련 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
padosum committed Feb 25, 2023
1 parent 0155002 commit b0e3718
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.app.json
@@ -1,7 +1,7 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"exclude": ["src/**/__tests__/*", "tests/**/*", "vitests/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
Expand Down
9 changes: 8 additions & 1 deletion tsconfig.vitest.json
@@ -1,9 +1,16 @@
{
"extends": "./tsconfig.app.json",
"exclude": [],
"include": ["src/**/*", "tests/**/*"],
"compilerOptions": {
"composite": true,
"lib": [],
"types": ["node", "jsdom"]
"types": [
"node",
"jsdom",
"vitest/globals",
"vuetify",
"@testing-library/jest-dom"
]
}
}

0 comments on commit b0e3718

Please sign in to comment.