Skip to content

Commit

Permalink
update tsconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-ebey committed Aug 3, 2022
1 parent e95c5d7 commit 6709608
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/turborepo-vercel/packages/ui/tsconfig.json
Expand Up @@ -6,5 +6,5 @@
"jsx": "react-jsx"
},
"include": ["src"],
"exclude": ["dist", "build", "node_modules"]
"exclude": ["dist", "build", "**/node_modules/**"]
}
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
@@ -1,6 +1,6 @@
{
"files": [],
"exclude": ["node_modules", "build"],
"exclude": ["**/node_modules/**", "build"],
"references": [
{ "path": "integration" },
{ "path": "packages/create-remix" },
Expand Down

0 comments on commit 6709608

Please sign in to comment.