-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
63 lines (59 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
/* compilation */
"lib": [
"ES2020",
"ES2020.BigInt",
"ES2020.Promise",
"ES2020.String"
],
"target": "ES2020",
"allowJs": true,
/* compilation */
"rootDir": "./src",
"outDir": "./dist",
"declaration": false,
"skipLibCheck": true,
"baseUrl": ".",
"removeComments": true,
"importHelpers": true,
/* strict check */
"strict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"importsNotUsedAsValues": "preserve",
"checkJs": true,
"noImplicitAny": true,
// "noImplicitReturns": true,
"noImplicitThis": true,
// "noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* types */
"types": [
"node"
],
/* module options */
"module": "CommonJS",
"esModuleInterop": true,
"paths": {
"@lib": [
"src/lib/index.ts"
],
"@core": [
"src/core/*"
]
}
},
"exclude": [
"./dist",
"./node_modules"
],
"include": [
"./src"
]
}