ToolJet/server/tsconfig.json
2021-07-23 11:02:49 +05:30

21 lines
505 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
"allowJs": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@services/*": ["src/services/*"],
"@plugins/*": ["plugins/*"],
"@controllers/*": ["src/controllers/*"],
}
}
}