mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 05:01:43 +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.
55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"preserveSymlinks": true,
|
|
"typeRoots": [
|
|
"../../node_modules",
|
|
"../../node_modules/@rancher/shell/types"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"webpack-env",
|
|
"@types/node",
|
|
"@types/jest",
|
|
"@types/lodash",
|
|
"rancher",
|
|
"shell"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
],
|
|
"paths": {
|
|
"@shell/*": [
|
|
"@rancher/shell/*"
|
|
],
|
|
"@components/*": [
|
|
"@rancher/components/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.d.ts",
|
|
"**/*.tsx",
|
|
"**/*.vue",
|
|
"./index.d.ts"
|
|
],
|
|
"exclude": [
|
|
"../../node_modules",
|
|
"**/*.test.ts"
|
|
]
|
|
} |