-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.05 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
{
"compilerOptions": {
/* Basic Options */
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext.array", "esnext", "dom"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
// "inlineSources": true,
/* Strict Type-Checking Options */
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
//
"forceConsistentCasingInFileNames": true,
//
"rootDir": "./src",
"outDir": "./build",
/* Module Options */
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
// Only necessary because @types/uglify-js can't find types for source-map
// "skipLibCheck": true,
"experimentalDecorators": true,
"useDefineForClassFields": true
},
"include": ["./src"]
}