harvester-ui-extension/tsconfig.json
Francesco Torchia aba9c167e0
Vue3 migration - vue-migration.js launch + shell compatibility fixes
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:51 +02:00

43 lines
737 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/jest",
"@types/node",
"cypress",
"rancher",
"shell"
]
},
"exclude": [
"node_modules"
]
}