3e06def637
- Add electron-vite + Vue 3 + TypeScript build config - Add .gitignore with legacy/ exclusion - Add AGENTS.md with architecture & dev commands - Update README.md
21 lines
494 B
JSON
21 lines
494 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"]
|
|
},
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" },
|
|
{ "path": "./tsconfig.web.json" }
|
|
]
|
|
}
|