podman-desktop/packages/preload/tsconfig.json
Florent Benoit 488789710b chore: remove ../api imports
related to https://github.com/podman-desktop/podman-desktop/issues/15677
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
2026-02-23 12:37:43 +01:00

22 lines
533 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"sourceMap": false,
"moduleResolution": "nodenext",
"skipLibCheck": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"/@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "exposedInMainWorld.d.ts", "../../types/**/*.d.ts"]
}