mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-22 19:14:31 +03:00
36 lines
790 B
JSON
36 lines
790 B
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "ES2021"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"composite": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": [
|
|
".svelte-kit/ambient.d.ts",
|
|
".svelte-kit/non-ambient.d.ts",
|
|
".svelte-kit/types/**/$types.d.ts",
|
|
"terrazzo.config.js",
|
|
"postcss.config.js",
|
|
"vite.config.js",
|
|
"vite.config.ts",
|
|
"vitest.workspace.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.ts",
|
|
"src/**/*.svelte",
|
|
"tests/**/*.js",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.svelte"
|
|
]
|
|
}
|