Skip to content

Commit

Permalink
fix: upgrade module and moduleResolution to Node16
Browse files Browse the repository at this point in the history
  • Loading branch information
HJunyuan committed Jun 18, 2024
1 parent 7dcffb5 commit 5c40f8e
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"esnext"
],
"lib": ["dom", "esnext"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"module": "Node16",
"moduleResolution": "Node16",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"allowJs": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"src",
"integration"
]
"include": ["src", "integration"]
}

0 comments on commit 5c40f8e

Please sign in to comment.