cath/tsconfig.json

21 lines
495 B
JSON
Raw Normal View History

2021-09-13 13:25:00 +02:00
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"declaration": true,
"outDir": "dist",
2021-10-14 18:48:40 +02:00
"sourceMap": false,
2021-09-13 13:25:00 +02:00
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true
},
2021-09-18 11:31:08 +02:00
"include": ["./src"],
2021-09-13 13:25:00 +02:00
"exclude": ["./node_modules"]
}