-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
executable file
·45 lines (45 loc) · 1.17 KB
/
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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"baseUrl": ".",
"rootDir": ".",
"typeRoots": ["../../node_modules/@types", "typings"],
"declaration": false,
"removeComments": false,
"noLib": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
"inlineSources": true,
"paths": {
"react": ["../../node_modules/@types/react"],
"therr-public-library/therr-styles/*": ["../../therr-public-library/therr-styles/*"],
"therr-js-utilities/*": ["../../therr-public-library/therr-js-utilities/lib/*"],
},
"pretty": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strict": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"outDir": "build",
"jsx": "react"
},
"files": [
"src/app.d.ts",
"src/unit_test.d.ts"
],
"include": [
"src/**/*"
],
"exclude": [
"../../node_modules/**/*.*"
],
"compileOnSave": false
}