-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
tsconfig.es6.json
36 lines (36 loc) · 912 Bytes
/
tsconfig.es6.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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"removeComments": true,
"noImplicitAny": false,
"outDir": "./modules",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"jsxFactory": "h",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"importHelpers": true,
"pretty": true,
"sourceMap": false,
"esModuleInterop": true,
"noEmitHelpers": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"declaration": true,
"lib": ["dom", "es5", "es6", "es7", "es2015", "es2017", "scripthost", "dom.iterable"]
},
"include": ["typing.d.ts", "src"],
"exclude": [
"node_modules",
"lib",
"**/__tests__/**/*",
"**/__story__/**/*",
"*.test.ts",
"*.test.tsx"
]
}