From adab5dd591af7df85619fa7adc3a95d07a12abf8 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sat, 27 Jan 2024 14:04:49 +0200 Subject: [PATCH] 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. --- dashboard/tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dashboard/tsconfig.json b/dashboard/tsconfig.json index 34507dfc..1bd1fd32 100644 --- a/dashboard/tsconfig.json +++ b/dashboard/tsconfig.json @@ -1,11 +1,18 @@ { - "extends": "../tsconfig.json", "compilerOptions": { "moduleResolution": "node", "module": "esnext", "target": "es2018", + "sourceMap": true, + "noImplicitAny": false, + "allowSyntheticDefaultImports": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "strict": false, "lib": ["esnext", "dom"], "baseUrl": ".", + "resolveJsonModule": true, + "esModuleInterop": true, "allowJs": true, "paths": { "@shared/*": ["../shared/src/*"]