bridge/backend/tsconfig.json
2021-01-16 23:15:20 +01:00

18 lines
356 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["ES2020"],
"types": [
"node"
]
}
}