mirror of
https://github.com/rancher-sandbox/rancher-desktop.git
synced 2021-10-13 00:04:06 +03:00
38 lines
553 B
JSON
38 lines
553 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": [
|
|
"ESNext",
|
|
"ESNext.AsyncIterable"
|
|
],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"src/*"
|
|
],
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".nuxt",
|
|
"dist"
|
|
],
|
|
"include": [
|
|
"**/*",
|
|
".eslintrc.js"
|
|
]
|
|
}
|