-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 913 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
32
33
34
35
{
"compilerOptions": {
"lib": ["dom", "es2016", "es2017"],
"target": "es2016",
"moduleResolution": "node",
"jsx": "react", // transpile jsx (also for wallaby)
"outDir": "./build/",
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"allowJs": true,
"noEmitHelpers": true,
"importHelpers": true,
"noEmit": true,
"strict": true,
"sourceMap": true,
"types": ["react", "react-native", "jest"],
"baseUrl": "." //allow absolute imports eg import Button from 'src/comps/Button'
},
"exclude": [
"android",
"ios",
"index.android.js",
"index.ios.js",
"build",
"node_modules"
],
"compileOnSave": true
}