-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·48 lines (48 loc) · 1.9 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"useDefineForClassFields": true,
"incremental": true, // 差分ビルドを有効化 (差分情報は .tsbuildinfo に保存される)
"sourceMap": true, // ソースマップを出力
"removeComments": false, // ビルド後にコメントを残す
"resolveJsonModule": true, // JSON ファイルを import できるようにする
"importHelpers": true, // tslib から polyfill を import する
"esModuleInterop": true, // CommonJS モジュールとの相互運用性を有効化
"forceConsistentCasingInFileNames": true, // ファイル名の大文字小文字に一貫性がないときにエラーにする
// 以下は型チェックの設定
"strict": true, // 厳密な型チェックを有効化
"skipLibCheck": true, // ライブラリ (d.ts) の型チェックをしない (Vue.js で確か必要なはず)
"noImplicitAny": false, // 特に依存している web-bml が型がないモジュールをインポートしてたりして解消が面倒なので無効化
"noImplicitThis": true, // Volar で this の補完を有効にする
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"lib": [
"ESNext",
"DOM",
"DOM.Iterable",
"ScriptHost",
"WebWorker",
],
"types": [],
"paths": {
"@/*": [
"src/*",
]
},
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
],
"exclude": [
"node_modules",
]
}