rate/api/tsconfig.json

19 lines
385 B
JSON
Raw Permalink Normal View History

2022-09-20 13:27:52 +00:00
{
2022-09-22 16:00:56 +00:00
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"moduleResolution": "node",
"outDir": "dist",
2022-09-22 19:08:55 +00:00
"sourceMap": false,
2022-10-11 10:18:12 +00:00
"strictNullChecks": true,
2022-10-16 13:28:42 +00:00
"baseUrl": "./src",
2022-09-22 16:00:56 +00:00
"paths": {
2022-10-16 13:28:42 +00:00
"@core": ["../../core/src"]
2022-09-22 16:00:56 +00:00
}
},
2022-10-10 15:01:31 +00:00
"lib": ["es2015"],
"include": ["src/**/*"],
2022-10-16 13:28:42 +00:00
"exclude": ["node_modules/*", "dist/*"]
2022-10-10 15:01:31 +00:00
}