podman-desktop/packages/renderer/tsconfig.json
Florent Benoit fba3f6037e chore: introduce inversify library
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>
2025-06-26 14:08:33 +02:00

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"
]
}