vault-link/frontend/sync-client/tsconfig.json
2025-03-15 14:12:04 +00:00

17 lines
No EOL
294 B
JSON

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