-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
59 lines (52 loc) · 1.39 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
56
57
58
59
{
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "commonjs"
}
},
"exclude": ["dist"],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Projects */
"incremental": true,
/* Language and Environment */
"target": "es2016",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"jsx": "react",
/* Modules */
"module": "commonjs",
"rootDir": "./",
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"/*": ["*"], // Won't work until https://github.com/dividab/tsconfig-paths/pull/180 merges
"~/*": ["*"]
},
"resolveJsonModule": true,
/* Emit */
"outDir": "node_modules",
"noEmit": true,
/* Interop Constraints */
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"skipLibCheck": true
}
}