fleet-e2e/tests/tsconfig.json

39 lines
659 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": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types",
"cypress",
"cy-verify-downloads",
"@rancher-ecp-qa/cypress-library",
"cypress-file-upload",
"@cypress/grep"
]
},
"exclude": [
"node_modules"
]
}