spookvooper-api/tsconfig.json

32 lines
711 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"outDir": "out/cjs",
"lib": [
"ESNext",
"ESNext.Array",
"ESNext.AsyncIterable",
"ESNext.Intl",
"ESNext.Symbol",
"DOM"
],
"sourceMap": false,
"inlineSourceMap": true,
"inlineSources": true,
"incremental": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strictNullChecks": true
},
"include": [
"src/**/*",
"typings/**/*"
],
"exclude": [
"node_modules",
"out/**/*"
],
}