mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
also update tsconfig files to be able to use decorators/annotations and update biome configuration to accept decorators related to https://github.com/podman-desktop/podman-desktop/issues/12640 Signed-off-by: Florent Benoit <fbenoit@redhat.com>
36 lines
931 B
JSON
36 lines
931 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"preserveValueImports": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"/@/*": ["./src/*"],
|
|
"/@api/*": ["../api/src/*"]
|
|
},
|
|
/**
|
|
* 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,
|
|
"types": ["@testing-library/jest-dom"]
|
|
},
|
|
"include": [
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.svelte",
|
|
"types/**/*.d.ts",
|
|
"../../types/**/*.d.ts",
|
|
"../preload/exposedInMainWorld.d.ts",
|
|
"../api/src/**/*.ts"
|
|
]
|
|
}
|