-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.03 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
46
47
48
49
{
"compileOnSave": true,
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"declarationDir": "dist/types",
"target": "ES2018",
"esModuleInterop": true,
"module": "CommonJS",
"sourceMap": true,
"incremental": true,
// "sourceRoot": "app",
"lib": [
"es2017",
"es2016",
"dom",
"es2015",
"ES2018",
"es5",
"es6",
"webworker"
/*, "scripthost"*/
],
"jsx": "react",
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"removeComments": false,
"preserveConstEnums": true,
"skipLibCheck": true,
"pretty": true,
"strict": true,
"typeRoots": ["./node_modules/@types"],
"noImplicitReturns": true,
"rootDir": "src",
"outDir": "dist",
"baseUrl": "",
"forceConsistentCasingInFileNames": true,
"paths": {
"*": ["dist/*"],
"@atas/weblib-ui-js": ["dist"]
}
},
"include": ["src/**/*"],
"exclude": ["dist", "esm", "node_modules"]
}