zappyzep/backend/tsconfig.json
Dragory fd8d128048
Change tsconfig target to es2020
Node.js 12.9.0 and up should support all es2020 features
2020-01-20 23:54:52 +02:00

27 lines
530 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2020",
"lib": [
"esnext"
],
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "./dist",
"paths": {
"@shared/*": [
"../shared/src/*"
]
},
"sourceMap": true
},
"include": [
"src/**/*.ts"
]
}