-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.19 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
//{
// "ts-node": {
// "compilerOptions": {
// "module": "CommonJS"
// }
// },
// "compilerOptions": {
// "outDir": "dist",
// "baseUrl": ".",
// "rootDir": "src",
// "allowJs": true,
// "allowUnusedLabels": false,
// "allowUnreachableCode": false,
// "noFallthroughCasesInSwitch": true,
// "noUncheckedIndexedAccess": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "forceConsistentCasingInFileNames": true,
// "declaration": true,
// "sourceMap": true,
// "resolveJsonModule": true,
// "esModuleInterop": true,
// "module": "CommonJS",
// "target": "ES6"
// },
// "include": ["src", "test"],
// "exclude": ["dist", "bundle", "node_modules"]
//}
{
"compilerOptions": {
// "composite": true,
"allowJs": true,
"target": "ES6",
"outDir": "dist",
"rootDir": "src",
"module": "CommonJS",
"moduleResolution": "Node",
"declaration": true,
"declarationDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["ES6", "DOM"],
"typeRoots": ["node_modules/@types"]
},
"compileOnSave": false,
"include": ["src/**/*.ts", "test/**/*.ts"],
"exclude": ["node_modules"]
}