-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
46 lines (46 loc) · 1 KB
/
tsconfig.test.json
File metadata and controls
46 lines (46 loc) · 1 KB
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": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": ".",
"experimentalDecorators": true,
"jsx": "react",
"lib": [
"es6",
"es7",
"dom"
],
"module": "esnext",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"paths": {},
"preserveConstEnums": true,
"removeComments": false,
"outDir": "./dist/", /* Redirect output structure to the directory. */
"rootDir": "./src/", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"sourceMap": false,
"strictFunctionTypes": true,
"strictNullChecks": true,
"target": "es2016",
"typeRoots": [
"node_modules/@types"
],
"types": [
"node",
"react",
"react-dom"
]
},
"exclude": [
"es",
"lib",
"dist",
"node_modules"
],
"include": [
"./src/**/*"
]
}