Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Apr 23, 2024
1 parent ad1dec2 commit 4c82ef9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/vercel-remix/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
"include": ["**/*.ts"],
"exclude": ["dist", "__tests__", "node_modules"],
"compilerOptions": {
"lib": ["ES2022"],
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"target": "ES2022",
"module": "ES2022",
"composite": true,

"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"declaration": true,
"emitDeclarationOnly": true,
"rootDir": ".",
"outDir": "../../build/node_modules/@vercel/remix/dist"
"outDir": "../../build/node_modules/@vercel/remix/dist",

// Avoid naming conflicts between lib.dom.d.ts and globals.ts
"skipLibCheck": true
}
}

0 comments on commit 4c82ef9

Please sign in to comment.