mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-04-28 11:49:57 +00:00
* Use runtime-generated schemas * Ensures validated schemas always match code * Can use schemas for individual source/clients without having to generate files * catch invididual validation errors and log instead of crashing * refactor validation error output into chained error instead of as individual log statements to improve clarity
24 lines
585 B
JSON
24 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
"useDefineForClassFields": true,
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"sourceMap": false,
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
}
|