-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
36 lines (36 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
{
//"extends": "../tsproject.json",
"compilerOptions": {
"declaration": true,
"composite": true,
"outDir": "./dist",
"rootDir": "src",
// 下面是公共的,应该从tsproject.json extends,但是会出错误。
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"preserveSymlinks": true,
"target": "es6",
"lib": ["es2016", "dom"],
"sourceMap": true,
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"experimentalDecorators": true,
"baseUrl": ".",
"skipLibCheck": true
},
"references": [
{ "path": "../tonva-tools" },
{ "path": "../tonva-react-form" }
],
"exclude": [
"dist",
"node_modules"
]
}