-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtsconfig.json
56 lines (48 loc) · 1.53 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
49
50
51
52
53
54
55
{
"compilerOptions": {
// --- Module
"module": "CommonJS", // none, CommonJS, amd, system, umd, es6, es2015, ESNext
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
// --- Build
"target": "ESNext",
"allowJs": false,
"checkJs": false,
"pretty": true,
"newLine": "lf",
"lib": ["ESNext", "DOM"],
"importHelpers": true,
"incremental": true,
"tsBuildInfoFile": "./node_modules/.tsbuildinfo",
// --- Emit
"declaration": true,
"emitDeclarationOnly": false,
"noEmitOnError": false,
"listEmittedFiles": true,
// --- Source Maps
"sourceMap": true,
"inlineSourceMap": false,
"inlineSources": true,
// --- Features
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"preserveSymlinks": true,
"jsx": "react",
"removeComments": false,
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
// --- Type Checking
"strict": false,
"alwaysStrict": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": true,
"noImplicitOverride": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"skipLibCheck": true,
}
}