2022-03-06 19:46:59 -05:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2022-03-23 00:18:26 -04:00
|
|
|
"jsx": "react-jsxdev",
|
2022-03-06 19:46:59 -05:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"pretty": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"skipLibCheck": true,
|
2022-03-07 23:42:44 -05:00
|
|
|
"strictPropertyInitialization": true,
|
2022-03-24 17:53:57 -04:00
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@routes/*": ["./src/routes/*"],
|
|
|
|
"@lib/*": ["./src/lib/*"]
|
|
|
|
}
|
2022-03-06 19:46:59 -05:00
|
|
|
},
|
2022-03-24 17:53:57 -04:00
|
|
|
"ts-node": {
|
|
|
|
// Do not forget to `npm i -D tsconfig-paths`
|
|
|
|
"require": ["tsconfig-paths/register"]
|
2022-03-06 19:46:59 -05:00
|
|
|
},
|
2022-03-21 20:20:41 -04:00
|
|
|
"include": ["index.ts", "src/**/*.ts"],
|
2022-03-06 19:46:59 -05:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|