-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (37 loc) · 960 Bytes
/
tsconfig.json
File metadata and controls
44 lines (37 loc) · 960 Bytes
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
{
"compilerOptions": {
"types": ["node"],
/* Emit */
"declaration": true,
"declarationMap": true,
"sourceMap": false,
"outDir": "./dist",
/* Modules & Resolution */
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
/* Language & Target */
"target": "ES2019",
"lib": ["ES2019"],
/* Strictness */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* JS Interop */
"allowJs": false,
"checkJs": false,
/* Interop / Packaging */
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleDetection": "force",
/* Paths */
"baseUrl": "./src"
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.spec.ts"]
}