mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
29 lines
825 B
JSON
29 lines
825 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": {
|
|
"@ee/*": ["ee/*"],
|
|
"@apps/*": ["ce/apps/*"],
|
|
"@services/*": ["src/services/*"],
|
|
"@controllers/*": ["src/controllers/*"],
|
|
"@repositories/*": ["src/repositories/*"],
|
|
"@dto/*": ["src/dto/*"],
|
|
"@modules/*": ["src/modules/*"],
|
|
"@helpers/*": ["src/helpers/*"],
|
|
"@instance-settings/*": ["ce/instance-settings/*"],
|
|
"@licensing/*": ["ce/licensing/*"],
|
|
},
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|