3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/backend/tsconfig.json

29 lines
699 B
JSON
Raw Permalink Normal View History

2018-07-01 03:35:51 +03:00
{
"compilerOptions": {
"moduleResolution": "node",
2018-07-01 03:35:51 +03:00
"module": "commonjs",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2020",
2021-09-11 19:06:51 +03:00
"lib": ["esnext"],
"baseUrl": ".",
"resolveJsonModule": true,
2018-12-14 06:47:58 +02:00
"esModuleInterop": true,
"outDir": "./dist",
"paths": {
2021-09-11 19:06:51 +03:00
"@shared/*": ["../shared/src/*"]
},
"sourceMap": true,
"alwaysStrict": true,
"noImplicitThis": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
"allowJs": true
2018-12-14 06:47:58 +02:00
},
2022-06-26 15:02:34 +03:00
"include": ["src/**/*.ts"]
2018-07-01 03:35:51 +03:00
}