fix: revert dashboard tsconfig

There are a lot of errors with the stricter settings that the backend
uses and it's not worth it fixing the dashboard now when we're
rewriting it in the near future.
This commit is contained in:
Dragory 2024-01-27 14:04:49 +02:00
parent 49866d375a
commit adab5dd591
No known key found for this signature in database

View file

@ -1,11 +1,18 @@
{ {
"extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"moduleResolution": "node", "moduleResolution": "node",
"module": "esnext", "module": "esnext",
"target": "es2018", "target": "es2018",
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": false,
"lib": ["esnext", "dom"], "lib": ["esnext", "dom"],
"baseUrl": ".", "baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true, "allowJs": true,
"paths": { "paths": {
"@shared/*": ["../shared/src/*"] "@shared/*": ["../shared/src/*"]