generated from mizdra/webpack-ts-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (25 loc) · 1.04 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
{
"include": ["src/**/*"],
"exclude": ["node_modules"],
"compilerOptions": {
/* Basic Options */
"target": "ES2019",
"lib": ["esnext", "dom"],
/* Module Options */
"module": "esnext", // モジュール周りは tsc 側で弄らず webpack に任せる
"esModuleInterop": true, // CommonJS モジュールを `import _ from 'commonjs'` で import できるように
"resolveJsonModule": true, // import した json の型を推論するように
"moduleResolution": "node", // `node` にしないと `resolveJsonModule` が使えない
"forceConsistentCasingInFileNames": true, // 大文字小文字を区別しない環境 (win) でも unix と同じように区別する
/* Additional Features */
"jsx": "react",
/* Strict Type-Checking Options */
"strict": true,
/* Lint Options */
"noUnusedLocals": true,
"noUnusedParameters": true,
/* Debug Options */
"sourceMap": true, // for ts-loader (ref: https://github.com/TypeStrong/ts-loader#devtool--sourcemaps)
"locale": "ja"
}
}