From 237b42bb9c6bda72a72b114cf7eaac5ed6c87aa2 Mon Sep 17 00:00:00 2001 From: Jonas Perusquia Morales Date: Tue, 24 Mar 2026 13:59:05 -0600 Subject: [PATCH] chore: remove baseUrl from TypeScript configuration files --- docs/tsconfig.json | 3 +-- examples/bun/tsconfig.json | 1 - examples/postgres/tsconfig.json | 1 - examples/react-router/tsconfig.json | 1 - examples/tanstack-start/tsconfig.json | 1 - packages/plasmic/tsconfig.json | 11 +++++------ 6 files changed, 6 insertions(+), 12 deletions(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 17aaff78..524dcd37 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { - "baseUrl": ".", - "target": "ESNext", + "target": "es2023", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, diff --git a/examples/bun/tsconfig.json b/examples/bun/tsconfig.json index 6f144048..d2110229 100644 --- a/examples/bun/tsconfig.json +++ b/examples/bun/tsconfig.json @@ -17,7 +17,6 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, - "baseUrl": "." }, "include": ["index.ts"] } diff --git a/examples/postgres/tsconfig.json b/examples/postgres/tsconfig.json index 7fb1ec56..af3606b0 100644 --- a/examples/postgres/tsconfig.json +++ b/examples/postgres/tsconfig.json @@ -23,7 +23,6 @@ "isolatedModules": true, "esModuleInterop": true, "skipLibCheck": true, - "baseUrl": ".", "paths": { "bknd": ["../app/src/index.ts"], "bknd/*": ["../app/src/*"] diff --git a/examples/react-router/tsconfig.json b/examples/react-router/tsconfig.json index dc391a45..cbe49c7a 100644 --- a/examples/react-router/tsconfig.json +++ b/examples/react-router/tsconfig.json @@ -13,7 +13,6 @@ "moduleResolution": "bundler", "jsx": "react-jsx", "rootDirs": [".", "./.react-router/types"], - "baseUrl": ".", "paths": { "~/*": ["./app/*"] }, diff --git a/examples/tanstack-start/tsconfig.json b/examples/tanstack-start/tsconfig.json index 477479fb..582a8694 100644 --- a/examples/tanstack-start/tsconfig.json +++ b/examples/tanstack-start/tsconfig.json @@ -20,7 +20,6 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] } diff --git a/packages/plasmic/tsconfig.json b/packages/plasmic/tsconfig.json index d8a2e777..eb8496fe 100644 --- a/packages/plasmic/tsconfig.json +++ b/packages/plasmic/tsconfig.json @@ -10,17 +10,16 @@ "allowImportingTsExtensions": false, "verbatimModuleSyntax": true, "strict": true, - "outDir": "dist", - "declarationDir": "dist", + "outDir": "./dist", + "declarationDir": "./dist", "declaration": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": false, "noPropertyAccessFromIndexSignature": false, - "rootDir": "src", - "baseUrl": "src", - "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo" + "rootDir": "./src", + "tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo" }, - "include": ["src/**/*"], + "include": ["./src/**/*"], "exclude": ["bknd", "dist", "node_modules"] }