ToolJet/server/tsconfig.json
2021-07-19 17:00:40 +05:30

20 lines
484 B
JSON

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