Skip to content

Commit

Permalink
Merge pull request #239 from mgcrea/patch-1
Browse files Browse the repository at this point in the history
Update vite-react.json
  • Loading branch information
orta authored Dec 11, 2023
2 parents 84f659b + b06311b commit 22f9047
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions bases/vite-react.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Vite React",
"_version": "2.0.0",
"_version": "3.0.0",

"compilerOptions": {
"target": "esnext",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
}
}

0 comments on commit 22f9047

Please sign in to comment.