Skip to content

Commit

Permalink
feat: update tsconfig.json to allow latest EcmaScript version
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Oct 4, 2024
1 parent b4d5c9c commit d883889
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"exclude": ["./cypress", "./cypress.config.ts"],
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["vitest/globals"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ES2020",
"module": "ES2022",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2020",
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit d883889

Please sign in to comment.