-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 775 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 775 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
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"outDir": "dist",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitAny": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNEXT"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
}