diff --git a/fixtures/webstudio-cloudflare-template/tsconfig.json b/fixtures/webstudio-cloudflare-template/tsconfig.json index ca551e00865a..15f458bd9cef 100644 --- a/fixtures/webstudio-cloudflare-template/tsconfig.json +++ b/fixtures/webstudio-cloudflare-template/tsconfig.json @@ -26,6 +26,7 @@ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "baseUrl": ".", + "customConditions": ["webstudio"], // Vite takes care of building everything, not tsc. "noEmit": true diff --git a/packages/cli/templates/defaults/tsconfig.json b/packages/cli/templates/defaults/tsconfig.json index 3a8213365312..75063d6afcda 100644 --- a/packages/cli/templates/defaults/tsconfig.json +++ b/packages/cli/templates/defaults/tsconfig.json @@ -16,8 +16,6 @@ "forceConsistentCasingInFileNames": true, "allowImportingTsExtensions": true, "baseUrl": ".", - "customConditions": ["webstudio"], - // Remix takes care of building everything in `remix build`. "noEmit": true, "skipLibCheck": true diff --git a/packages/cli/templates/internal/tsconfig.json b/packages/cli/templates/internal/tsconfig.json index afa0b94a329b..3a8213365312 100644 --- a/packages/cli/templates/internal/tsconfig.json +++ b/packages/cli/templates/internal/tsconfig.json @@ -16,9 +16,6 @@ "forceConsistentCasingInFileNames": true, "allowImportingTsExtensions": true, "baseUrl": ".", - "paths": { - "~/*": ["./app/*"] - }, "customConditions": ["webstudio"], // Remix takes care of building everything in `remix build`. diff --git a/packages/cli/templates/saas-helpers/tsconfig.json b/packages/cli/templates/saas-helpers/tsconfig.json index d0c38d928582..15f458bd9cef 100644 --- a/packages/cli/templates/saas-helpers/tsconfig.json +++ b/packages/cli/templates/saas-helpers/tsconfig.json @@ -26,9 +26,6 @@ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "baseUrl": ".", - "paths": { - "~/*": ["./app/*"] - }, "customConditions": ["webstudio"], // Vite takes care of building everything, not tsc.