forked from dvens/atomify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·31 lines (31 loc) · 900 Bytes
/
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
{
"compilerOptions": {
"alwaysStrict": true,
"target": "es2017",
"module": "es2015",
"moduleResolution": "node",
"lib": ["esnext.array", "esnext", "es2017", "dom"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
// Only necessary because @types/uglify-js can't find types for source-map
"skipLibCheck": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"jsxFactory": "h",
"emitDecoratorMetadata": true,
"strictNullChecks": true,
"noEmitOnError": true
}
}