35 lines
906 B
JSON
35 lines
906 B
JSON
{
|
|
"compilerOptions": {
|
|
"preserveConstEnums": true,
|
|
"strictNullChecks": true,
|
|
"inlineSources": true,
|
|
"inlineSourceMap": true,
|
|
"sourceRoot": "/",
|
|
"target": "es2017",
|
|
"outDir": ".build",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"lib": ["es2020", "DOM", "DOM.Iterable"],
|
|
"rootDir": "./",
|
|
"baseUrl": "./",
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@config/*": ["config/*"],
|
|
"@seed/*": ["lib/seed/*"],
|
|
"@src/*": ["src/*"],
|
|
"@services/*": ["services/*"],
|
|
"@lib/*": ["lib/*"],
|
|
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/__tests/*",
|
|
"*.spec.ts",
|
|
"**/examples/*",
|
|
]
|
|
}
|