mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
36 lines
978 B
JSON
36 lines
978 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"allowJs": false,
|
|
"noEmit": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@enums/*": ["lib/enums/*"],
|
|
"@repository/*": ["lib/repository/*"],
|
|
"@interfaces/*": ["lib/interfaces/*"],
|
|
"@models/*": ["lib/models/*"],
|
|
"@services/*": ["lib/services/*"],
|
|
"@helpers/*": ["lib/helpers/*"],
|
|
"@jobs/*": ["lib/jobs/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |