149ddebf16
* fix: #10569を解決 * fix: ロールが存在しない場合、タイトルにエラーメッセージを表示させる * fix: Reactivity Transformで型エラーを出さないように * feat: i18n対応 * feat: タブでエラー表示 * fix: エラーメッセージを分ける * fix: 使う変数の間違えを修正 * productionビルドできない問題を修正 --------- Co-authored-by: tamaina <tamaina@hotmail.co.jp>
52 lines
1,015 B
JSON
52 lines
1,015 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"target": "es2021",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"node_modules/@vue-macros",
|
|
"@types",
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"reactivity-transform/macros-global"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"jsx": "preserve"
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
".eslintrc.js",
|
|
"./**/*.ts",
|
|
"./**/*.vue"
|
|
],
|
|
"exclude": [
|
|
".storybook/**/*",
|
|
]
|
|
}
|