mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-04 22:08:29 +00:00
25 lines
646 B
JSON
25 lines
646 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/*"]
|
|
},
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|