mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
* add plugins to docker compose * build common * change cmd * build:pkgs * fix' * temp: add named vol * update docker-compose for plugins dev * update seed script to transpile only * fix ci * fix ci Co-authored-by: gandharv <gandharvkumargarg@gmail.com>
24 lines
614 B
JSON
24 lines
614 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/*"],
|
|
"@services/*": ["src/services/*"],
|
|
"@controllers/*": ["src/controllers/*"],
|
|
"@repositories/*": ["src/repositories/*"],
|
|
"@dto/*": ["src/dto/*"]
|
|
},
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|