forked from adevinta/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.build.json
30 lines (29 loc) · 879 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
{
"compilerOptions": {
"incremental": true,
"allowJs": true,
"composite": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "ESNext",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node",
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
},
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}