diff --git a/app/tsconfig.build.json b/app/tsconfig.build.json index 4d813b10..7ca26901 100644 --- a/app/tsconfig.build.json +++ b/app/tsconfig.build.json @@ -3,7 +3,6 @@ "compilerOptions": { "outDir": "./dist/types", "rootDir": "./src", - "baseUrl": ".", "tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo" }, "include": ["./src/**/*.ts", "./src/**/*.tsx"], diff --git a/app/tsconfig.json b/app/tsconfig.json index d6060d98..ed133995 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -2,11 +2,11 @@ "compilerOptions": { "composite": false, "incremental": true, - "module": "ESNext", + "module": "esnext", "moduleResolution": "bundler", "jsx": "react-jsx", "allowImportingTsExtensions": false, - "target": "ES2022", + "target": "es2023", "noImplicitAny": false, "allowJs": true, "verbatimModuleSyntax": true, @@ -26,7 +26,6 @@ "esModuleInterop": true, "skipLibCheck": true, "rootDir": ".", - "baseUrl": ".", "outDir": "./dist/types", "paths": { "*": ["./src/*"],