mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-09-03 05:10:00 +03:00
* Update relative import extension * Remove (bad?) TSconfig extends presets * Fix default non-relative imports
27 lines
465 B
JSON
27 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": false,
|
|
|
|
"module": "NodeNext",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/common/infrastructure/typings"
|
|
],
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"coverage",
|
|
"tests/*.ts",
|
|
"_site"
|
|
]
|
|
}
|