cath/tsconfig.json
2021-10-15 00:48:40 +08:00

20 lines
495 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"declaration": true,
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true
},
"include": ["./src"],
"exclude": ["./node_modules"]
}