フロントの型チェックは結局やらなかったので戻しておく

This commit is contained in:
osamu 2023-11-27 11:36:35 +09:00
parent 63b01dcfde
commit 531df7cb0b
2 changed files with 1 additions and 12 deletions

View File

@ -11,7 +11,7 @@
"chromatic": "chromatic",
"test": "vitest --run",
"test-and-coverage": "vitest --run --coverage --globals",
"typecheck": "vue-tsc -p tsconfig-test.json --noEmit",
"typecheck": "vue-tsc --noEmit",
"eslint": "eslint --quiet \"src/**/*.{ts,vue}\"",
"lint": "pnpm typecheck && pnpm eslint"
},

View File

@ -1,11 +0,0 @@
{
"extends": ["./tsconfig"],
"include": [
"src/**/*.ts",
"src/**/*.vue"
],
"exclude": [
".storybook/**/*",
"test/**/*",
]
}