-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
42 lines (41 loc) · 938 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
36
37
38
39
40
41
42
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": false,
"sourceMap": true,
"inlineSourceMap": false,
"inlineSources": false,
"preserveConstEnums": true,
"moduleResolution": "node",
/*
This is requred to resolve https://github.com/apollographql/apollo-client/issues/2503
Will be removed after the issue is resolved
*/
"strictNullChecks": false,
"skipLibCheck": true,
"allowJs": false,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"lib": ["dom","es5","es6","es7","es2017.object"],
"baseUrl": "./app",
"outDir": "./app/build",
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types"
]
},
"filesGlob": [
"./**/*.tsx?",
"!./**/tests/*"
],
"exclude": [
"node_modules",
"app/build",
"typings",
"**/tests/*"
]
}