ToolJet/server/tsconfig.json
Akshay e3317aa5b7
Chore: Docker compose plugins dev (#1953)
* 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>
2022-01-27 15:08:32 +05:30

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"]
}