antfu-collective_icones/tsconfig.json
2025-03-24 11:24:22 +09:00

25 lines
518 B
JSON

{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": ["DOM", "ESNext", "WebWorker"],
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"types": [
"vite/client",
"vite-plugin-pages/client",
"vite-plugin-pwa/client"
],
"strict": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"exclude": [
"dist",
"node_modules"
]
}