-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
42 lines (42 loc) · 863 Bytes
/
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
{
"ts-node": {
"files": true
},
"files": [
"src/index.ts",
"src/decs.d.ts"
],
"compilerOptions": { /* Docs: https://www.typescriptlang.org/tsconfig */
"target": "ES2020",
"module": "commonjs",
"sourceMap": true,
"outDir": "bin",
"rootDir": "src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
// "checkJs": true,
"allowJs": false,
"moduleResolution": "node",
"types": [
"node"
],
"lib": [
"es6"
],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnreachableCode": false,
"useUnknownInCatchVariables": true, // TypeScript 4.4+ only!
},
"include": [
"src/**/*.ts",
"src/**/*.js",
"src/decs.d.ts",
],
"exclude": [
"node_modules",
"<node_internals>/**",
]
}