-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 799 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 799 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
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "es2022",
"outDir": "dist",
"sourceMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"importHelpers": false,
"strict": true,
"declaration": true,
"declarationDir": "dist/types",
"types": ["node"]
},
"include": ["src", "json", "environment.d.ts"],
"exclude": ["node_modules", "**/*.spec.ts"],
"ts-node": {
"files": true,
"esm": true
}
}