-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtsconfig.json
46 lines (45 loc) · 1008 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
43
44
45
46
{
"compileOnSave": false,
"compilerOptions": {
"module": "commonjs",
"noUnusedLocals": false,
"noUnusedParameters": false,
"skipLibCheck": true,
"target": "es2015",
"sourceMap": false,
"moduleResolution": "node",
"allowJs": false,
"declaration": false,
"jsx": "react",
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false,
"rootDir": ".",
"outDir": "out",
"noLib": false,
"resolveJsonModule": true,
"lib": ["dom", "es5", "es2015", "es2016.array.include"],
"typeRoots": [
"./node_modules/@types"
]
},
"filesGlob": [
"**/*.ts",
"**/*.tsx"
],
"include": [
"*.ts",
"**/*.ts",
"**/*.tsx",
"server/**/*.ts",
"__mocks__/**/*.ts",
"__mocks__/**/*.tsx"
],
"files": [
"./node_modules/react-uwp/index.d.ts"
],
"exclude": [
"node_modules",
"build"
]
}