Skip to content

Commit

Permalink
🔧 chore: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Sep 17, 2023
1 parent 6b7e25c commit be4b971
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"lib": ["dom", "dom.iterable", "esnext"],
"sourceMap": true,
"skipDefaultLibCheck": true,
"jsx": "react-jsx",
"jsx": "preserve",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
Expand All @@ -18,7 +18,13 @@
"paths": {
"@/*": ["src/*"]
},
"types": ["vitest/globals"]
"types": ["vitest/globals"],
"allowJs": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"isolatedModules": true
},
"exclude": ["node_modules"],
"include": ["src", "next-env.d.ts", "*.ts"]
}

0 comments on commit be4b971

Please sign in to comment.