nidus-sync/tsconfig.json
Eli Ribble 03301518f0
TypeScript checking is clean.
Tons and tons of broken functionality. Now the crawl begins.
2026-03-22 02:55:17 +00:00

18 lines
415 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@/*": ["./ts/*"]
}
},
"include": ["ts/**/*", "ts/**/*.vue", "ts/vue-shim.d.ts"],
"exclude": ["node_modules"]
}