ivanovna.orm/tsconfig.json

28 lines
672 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2020",
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"allowJs": false,
"checkJs": false,
"preserveConstEnums": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"allowSyntheticDefaultImports": true,
"types": ["node", "jest", "rfdc", "mongodb", "bson"],
"watch": true,
"outDir": "./dist",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strict": false
},
"include": [
"./src/**/*"
]
}