PromucFlow_constructor/app/rts/tsconfig.json
Ayangade Adeoluwa 610509506e
fix: update rts logic to use updated shared AST logic (#16849)
* update rts logic to use updated shared AST logic

* Make changes to naming conventions

* Add test cases for RTS and rename ast functions

* Add running jest test to RTS workflow

* Install dependencies and then trigger jest tests in workflow

* Close server connection after test ends

* Remove logs

* Improve jest test descriptions
2022-09-28 17:28:18 +00:00

22 lines
538 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"allowJs": true,
"baseUrl": ".",
"paths": {
"@constants/*": ["./src/constants/*"],
"@services/*": ["./src/services/*"],
"@middlewares/*": ["./src/middlewares/*"],
"@controllers/*": ["./src/controllers/*"],
"@rules/*": ["./src/middlewares/rules/*"],
"@utils/*": ["./src/utils/*"]
}
},
"lib": ["es2015"]
}