* 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
22 lines
538 B
JSON
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"]
|
|
}
|