3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
zeppelin/backend/tsconfig.json
2022-06-26 15:02:34 +03:00

28 lines
699 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,
"alwaysStrict": true,
"noImplicitThis": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
"allowJs": true
},
"include": ["src/**/*.ts"]
}