mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
related to https://github.com/podman-desktop/podman-desktop/issues/15677 Signed-off-by: Florent Benoit <fbenoit@redhat.com>
22 lines
533 B
JSON
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"]
|
|
}
|