vault-link/frontend/sync-client/tsconfig.json
2026-03-25 20:07:55 +00:00

16 lines
397 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"lib": [
"DOM", // to get `fetch` & `WebSocket`
"ES2024"
],
"declaration": true,
"declarationDir": "./dist/types"
},
"exclude": ["./dist"]
}