mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-11 12:11:45 +00:00
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.
43 lines
732 B
JSON
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"
|
|
]
|
|
} |