create-vanjs
Version:
🍦 Quick tool for scaffolding your first VanJS project
29 lines (26 loc) • 705 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"jsx": "preserve",
// "jsxImportSource": "@vanjs/jsx"
"jsxImportSource": "vite-plugin-vanjs"
},
"include": ["src"]
}