Skip to content

Commit

Permalink
chore: minimize tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
phonzammi committed Nov 16, 2024
1 parent de3e811 commit 6f58d8e
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions packages/vike-react-chakra/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
{
"compilerOptions": {
"outDir": "./dist/",
// Resolution
"declaration": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
// Libs
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"types": ["vite/client", "vike-react"],
// Strictness
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
// Output
"declaration": true,
"noEmitOnError": false,
"rootDir": "./",
// Misc
"esModuleInterop": true,
"lib": ["DOM", "ESNext"],
"jsx": "react",
"outDir": "./dist/",
"skipLibCheck": true,
"jsx": "react"
"strict": true,
"types": ["vike-react"]
}
}

0 comments on commit 6f58d8e

Please sign in to comment.