29 lines
647 B
JSON
29 lines
647 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"pretty": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"strictPropertyInitialization": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@routes/*": ["./src/routes/*"],
|
|
"@lib/*": ["./src/lib/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"include": ["index.ts", "src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|