gitbutler/packages/ui/tsconfig.json
Mattias Granlund eb98425231 Allow modern javascript
Needed for e.g. [].slice()
2023-11-22 20:49:58 +00:00

18 lines
403 B
JSON

{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"target": "es6",
"lib": ["dom", "dom.iterable", "ES2020"],
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
"types": ["vitest/importMeta"]
}
}