-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 814 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 814 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
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmitOnError": false,
"pretty": true,
"removeComments": false,
"preserveConstEnums": true
},
"include": [
"lib/**/*",
"bin/**/*",
"tests/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.js",
"coverage"
]
}