Files
electron-vue/tsconfig.web.json
2026-05-21 00:30:05 +08:00

21 lines
519 B
JSON

{
"compilerOptions": {
"composite": true,
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"outDir": "./out/types",
"paths": {
"@renderer/*": ["./src/renderer/src/*"]
}
},
"include": ["src/renderer/**/*"]
}