-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.build.json
31 lines (31 loc) · 954 Bytes
/
tsconfig.build.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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"importHelpers": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"moduleResolution": "nodenext",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"pretty": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": true,
"target": "ESNext",
"downlevelIteration": true,
"skipLibCheck": true,
"outDir": "lib"
},
"exclude": ["**/node_modules/**", "**/lib/**"]
}