mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-22 01:57:18 +00:00
* chore: add strictNullChecks to Compose, Lima, Kubectl and KubeContext extensions Signed-off-by: lstocchi <lstocchi@redhat.com> * chore: convert strictNullChecks to strict Signed-off-by: lstocchi <lstocchi@redhat.com> * fix: update tsconfig in registries Signed-off-by: lstocchi <lstocchi@redhat.com> * fix: ignore mustache error Signed-off-by: lstocchi <lstocchi@redhat.com> * fix: typecheck Signed-off-by: lstocchi <lstocchi@redhat.com> --------- Signed-off-by: lstocchi <lstocchi@redhat.com>
17 lines
393 B
JSON
17 lines
393 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2017", "webworker"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src", "types/*.d.ts"]
|
|
}
|