mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
406b4bdbe7
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
53 lines
1006 B
JSON
53 lines
1006 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"typeRoots": [
|
|
"./@types",
|
|
"./node_modules/@types",
|
|
"./node_modules/@vue-macros",
|
|
"./node_modules"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"jsx": "preserve"
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
".eslintrc.js",
|
|
"./**/*.ts",
|
|
"./**/*.vue"
|
|
],
|
|
"exclude": [
|
|
".storybook/**/*"
|
|
]
|
|
}
|