diff --git a/src/frontend/tsconfig.json b/src/frontend/tsconfig.json index b1c8746e90..23338cd5a5 100644 --- a/src/frontend/tsconfig.json +++ b/src/frontend/tsconfig.json @@ -10,14 +10,15 @@ "strict": true, "forceConsistentCasingInFileNames": true, "module": "ESNext", - "moduleResolution": "Node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", "paths": { "@lib/*": ["./lib/*"] - } + }, + "ignoreDeprecations": "6.0" }, "include": ["src", "lib", "vite-env.d.ts"], "exclude": ["node_nodules", "dist"], diff --git a/src/frontend/tsconfig.lib.json b/src/frontend/tsconfig.lib.json index 120c1c34cc..dc682e49fc 100644 --- a/src/frontend/tsconfig.lib.json +++ b/src/frontend/tsconfig.lib.json @@ -7,6 +7,7 @@ "rootDir": "./lib", "outDir": "./dist", "paths": {}, + "ignoreDeprecations": "6.0" }, "include": ["lib"], "exclude": ["node_modules", "src"]