From d03cd7f7bc1cf72caf00c31fd6b36396b037d02d Mon Sep 17 00:00:00 2001 From: Jonas Perusquia Morales Date: Tue, 24 Mar 2026 13:49:10 -0600 Subject: [PATCH] chore: standardize TypeScript module and target casing in configuration files --- app/tsconfig.build.json | 1 - app/tsconfig.json | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) 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/*"],