refactor(tsconfig): update package/api configuration

make it like other parts of the code
 - extending strictest configuration
 - newer module/moduleResolution

related to https://github.com/podman-desktop/podman-desktop/issues/15496

Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent Benoit 2026-02-09 10:43:02 +01:00 committed by Florent BENOIT
parent 535148c848
commit 90c69da89c

View file

@ -1,9 +1,10 @@
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"module": "NodeNext",
"target": "esnext",
"sourceMap": false,
"moduleResolution": "Node",
"moduleResolution": "node16",
"strict": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,