diff --git a/backend/tsconfig.json b/backend/tsconfig.json index beb0bca..9a4ee8f 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -1,18 +1,10 @@ { + "extends": "../tsconfig.json", "compilerOptions": { "rootDir": ".", "baseUrl": ".", - "allowJs": true, - "checkJs": true, - "noEmit": true, - "skipLibCheck": true, "module": "CommonJS", - "moduleResolution": "Node", - "target": "ESNext", - "lib": ["ESNext", "dom"], - "strict": true, - "noImplicitAny": false, - "allowSyntheticDefaultImports": true + "moduleResolution": "Node" }, "include": ["."] } diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index a122191..2c8bc1d 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,18 +1,10 @@ { + "extends": "../tsconfig.json", "compilerOptions": { "rootDir": ".", "baseUrl": "src", - "allowJs": true, - "checkJs": true, - "noEmit": true, - "skipLibCheck": true, "module": "NodeNext", "moduleResolution": "NodeNext", - "target": "ESNext", - "lib": ["ESNext", "dom"], - "strict": true, - "noImplicitAny": false, - "allowSyntheticDefaultImports": true, "jsx": "preserve" }, "include": ["src"] diff --git a/tsconfig.json b/tsconfig.json index 7d2c9df..1638018 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,5 @@ "strict": true, "noImplicitAny": false, "allowSyntheticDefaultImports": true - }, - "include": ["backend", "frontend"] + } }