Skip to content

Commit

Permalink
attempt to fix module resolution for tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-ebey committed Jul 25, 2023
1 parent 069dc26 commit 0b29b61
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/create-remix/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"compilerOptions": {
"lib": ["ES2019", "DOM", "DOM.Iterable"],
"target": "ES2019",
"module": "CommonJS",
"module": "ES2020",
"skipLibCheck": true,
"composite": true,

Expand Down
2 changes: 1 addition & 1 deletion packages/remix-css-bundle/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"compilerOptions": {
"lib": ["ES2019", "DOM.Iterable"],
"target": "ES2019",
"module": "CommonJS",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "CommonJS",
"module": "ES2020",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-dev/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"compilerOptions": {
"lib": ["ES2019", "DOM.Iterable"],
"target": "ES2019",
"module": "CommonJS",
"module": "ES2020",
"composite": true,

"moduleResolution": "node",
Expand Down
2 changes: 1 addition & 1 deletion scripts/playground/template/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "CommonJS",
"module": "ES2020",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
Expand Down

0 comments on commit 0b29b61

Please sign in to comment.