mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 09:37:22 +00:00
18 lines
489 B
JSON
18 lines
489 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
"include": ["src/**/*.d.ts"]
|
|
}
|