spookvooper-api/tsconfig.json
Brendan Lane 02c8df4f53 💻 New sync
2020-12-08 15:50:31 -05:00

31 lines
707 B
JSON

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