Co-authored-by: Ivan Akulov <mail@iamakulov.com> Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Ivan Akulov <iamakulov@outlook.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com> Co-authored-by: somangshu <somangshu.goswami1508@gmail.com>
24 lines
609 B
JSON
24 lines
609 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@constants/*": ["./src/constants/*"],
|
|
"@services/*": ["./src/services/*"],
|
|
"@middlewares/*": ["./src/middlewares/*"],
|
|
"@controllers/*": ["./src/controllers/*"],
|
|
"@rules/*": ["./src/middlewares/rules/*"],
|
|
"@utils/*": ["./src/utils/*"]
|
|
}
|
|
},
|
|
"exclude": ["jest.config.js", "src/test"],
|
|
"lib": ["es2015"]
|
|
}
|