-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
46 lines (40 loc) · 1.09 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
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Bundler",
"lib": ["DOM", "ESNext"],
"esModuleInterop": true,
"rootDir": ".",
"baseUrl": ".",
"outDir": "build",
"sourceMap": false,
"declaration": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"skipLibCheck": true,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"strict": true,
"strictNullChecks": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false,
"incremental": true,
"jsx": "preserve",
"allowJs": true,
"typeRoots": ["./node_modules/@types", "global.d.ts"]
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"include": ["src/**/*", "__tests__/**/*", "*.d.ts"],
"exclude": ["node_modules", "dist", "build"]
}