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:
parent
49866d375a
commit
adab5dd591
1 changed files with 8 additions and 1 deletions
|
@ -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/*"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue