mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
* chore(api): creating api package Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com> * fix(tsconfig): path inclusion Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com> * chore(tsconfig): removing skipLibCheck Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com> --------- Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>
19 lines
373 B
JSON
19 lines
373 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"sourceMap": false,
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
|
|
"types": ["node"],
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"/@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "../../types/**/*.d.ts"]
|
|
}
|