Files
ski/tsconfig.json
Aaron Gutierrez f04fd0fada Migrate to Vite / Vite+
Modernize building and such
2026-04-03 21:12:56 -07:00

23 lines
558 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strict": true,
"target": "ES2020",
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["vite/client", "node"]
},
"include": ["./src/**/*", "./scripts/**/*", "./vite.config.ts"]
}