harvester-ui-extension/tsconfig.json
Cody Jackson 2d2615128c
Putting in some temporary workarounds regarding the typesystem
Without these changes we can't build the app using `yarn build-pkg harvester` because it complains about missing modules in @rancher/shell imports. I believe this will be resolved by https://github.com/rancher/dashboard/issues/11797#issue-2502509655 and we should remove this change once that occurs.
2024-10-23 17:00:57 +02:00

43 lines
732 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": [
"ESNext",
"ESNext.AsyncIterable",
"DOM"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
],
"@shell/*": [
"./node_modules/@rancher/shell/*"
]
},
"typeRoots": [
"./node_modules",
"./node_modules/@rancher/shell/types"
],
"types": [
"@types/node",
"cypress",
"rancher",
"shell"
]
},
"exclude": [
"node_modules",
"**/*.test.ts"
]
}