bridge/backend/tsconfig.json

19 lines
356 B
JSON
Raw Permalink Normal View History

2021-01-16 23:14:51 +01:00
{
"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"
]
}
}