From 670960851b3aafec5a3fc91bc2071406a6e6c196 Mon Sep 17 00:00:00 2001 From: Jacob Ebey Date: Wed, 3 Aug 2022 12:09:04 -0700 Subject: [PATCH] update tsconfigs --- examples/turborepo-vercel/packages/ui/tsconfig.json | 2 +- packages/remix-architect/tsconfig.json | 2 +- packages/remix-cloudflare-pages/tsconfig.json | 2 +- packages/remix-cloudflare-workers/tsconfig.json | 2 +- packages/remix-cloudflare/tsconfig.json | 2 +- packages/remix-dev/tsconfig.json | 2 +- packages/remix-express/tsconfig.json | 2 +- packages/remix-netlify/tsconfig.json | 2 +- packages/remix-node/tsconfig.json | 2 +- packages/remix-react/tsconfig.json | 2 +- packages/remix-serve/tsconfig.json | 2 +- packages/remix-server-runtime/tsconfig.json | 2 +- packages/remix-vercel/tsconfig.json | 2 +- packages/remix/tsconfig.json | 2 +- tsconfig.json | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/examples/turborepo-vercel/packages/ui/tsconfig.json b/examples/turborepo-vercel/packages/ui/tsconfig.json index f80319fab95..1270d8e7017 100644 --- a/examples/turborepo-vercel/packages/ui/tsconfig.json +++ b/examples/turborepo-vercel/packages/ui/tsconfig.json @@ -6,5 +6,5 @@ "jsx": "react-jsx" }, "include": ["src"], - "exclude": ["dist", "build", "node_modules"] + "exclude": ["dist", "build", "**/node_modules/**"] } diff --git a/packages/remix-architect/tsconfig.json b/packages/remix-architect/tsconfig.json index af74b25d877..db00820acad 100644 --- a/packages/remix-architect/tsconfig.json +++ b/packages/remix-architect/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-cloudflare-pages/tsconfig.json b/packages/remix-cloudflare-pages/tsconfig.json index 8b5f247723d..3168a3f5c9f 100644 --- a/packages/remix-cloudflare-pages/tsconfig.json +++ b/packages/remix-cloudflare-pages/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019"], "target": "ES2019", diff --git a/packages/remix-cloudflare-workers/tsconfig.json b/packages/remix-cloudflare-workers/tsconfig.json index dc027cc628d..56ad6fd0fde 100644 --- a/packages/remix-cloudflare-workers/tsconfig.json +++ b/packages/remix-cloudflare-workers/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019"], "target": "ES2019", diff --git a/packages/remix-cloudflare/tsconfig.json b/packages/remix-cloudflare/tsconfig.json index 77a288f43a8..89fd81deb55 100644 --- a/packages/remix-cloudflare/tsconfig.json +++ b/packages/remix-cloudflare/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019"], "target": "ES2019", diff --git a/packages/remix-dev/tsconfig.json b/packages/remix-dev/tsconfig.json index e44e02fdac8..b3559fbd6cc 100644 --- a/packages/remix-dev/tsconfig.json +++ b/packages/remix-dev/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["dist", "__tests__", "node_modules", "./compiler/shims"], + "exclude": ["dist", "__tests__", "**/node_modules/**", "./compiler/shims"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-express/tsconfig.json b/packages/remix-express/tsconfig.json index 64e50c9eaf1..577e8ebbd92 100644 --- a/packages/remix-express/tsconfig.json +++ b/packages/remix-express/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-netlify/tsconfig.json b/packages/remix-netlify/tsconfig.json index 7ac4b954272..c1791d88acc 100644 --- a/packages/remix-netlify/tsconfig.json +++ b/packages/remix-netlify/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-node/tsconfig.json b/packages/remix-node/tsconfig.json index e1d4b08fd95..f2c511fc44d 100644 --- a/packages/remix-node/tsconfig.json +++ b/packages/remix-node/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-react/tsconfig.json b/packages/remix-react/tsconfig.json index 8c9b58bb635..3fa6c1f75ca 100644 --- a/packages/remix-react/tsconfig.json +++ b/packages/remix-react/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts", "**/*.tsx"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2020"], "target": "ES2020", diff --git a/packages/remix-serve/tsconfig.json b/packages/remix-serve/tsconfig.json index d867dfe1d13..a9655fef5e2 100644 --- a/packages/remix-serve/tsconfig.json +++ b/packages/remix-serve/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-server-runtime/tsconfig.json b/packages/remix-server-runtime/tsconfig.json index 265cdafbfee..150a637b697 100644 --- a/packages/remix-server-runtime/tsconfig.json +++ b/packages/remix-server-runtime/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix-vercel/tsconfig.json b/packages/remix-vercel/tsconfig.json index 3c4a84f0ec2..a5a99266bb8 100644 --- a/packages/remix-vercel/tsconfig.json +++ b/packages/remix-vercel/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["ES2019", "DOM.Iterable"], "target": "ES2019", diff --git a/packages/remix/tsconfig.json b/packages/remix/tsconfig.json index 250fb1a79fb..ad1d4b50622 100644 --- a/packages/remix/tsconfig.json +++ b/packages/remix/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["**/*.ts"], - "exclude": ["dist", "__tests__", "node_modules"], + "exclude": ["dist", "__tests__", "**/node_modules/**"], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2020"], "target": "ES2020", diff --git a/tsconfig.json b/tsconfig.json index a1edc886359..4760c239ebc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "files": [], - "exclude": ["node_modules", "build"], + "exclude": ["**/node_modules/**", "build"], "references": [ { "path": "integration" }, { "path": "packages/create-remix" },