-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.frontend.json
32 lines (28 loc) · 1.06 KB
/
tsconfig.frontend.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
{
"compilerOptions": {
"target": "esnext",
"jsx": "react",
/* ファイル名の大文字小文字を区別 */
"forceConsistentCasingInFileNames": true,
/* 型チェック関係のオプション */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
/* Module解決方法 */
"moduleResolution": "node",
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
// /* 型チェックだけさせたいので出力なし */
// "noEmit": true,
/* For avoid WebGL2 error */
/* https://stackoverflow.com/questions/52846622/error-ts2430-interface-webglrenderingcontext-incorrectly-extends-interface-w */
"skipLibCheck": true
},
/* tscコマンドで読み込むファイルを指定 */
"include": ["frontend/src/**/*.ts", "frontend/src/**/*.tsx"],
"exclude": ["node_modules"]
}