test: fix ct-vue-vite typechecks (#22538)

This commit is contained in:
Max Schmitt 2023-04-21 00:31:00 +02:00 коммит произвёл GitHub
Родитель 58b3c31f3e
Коммит 7c89572a53
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 15 добавлений и 33 удалений

Просмотреть файл

@ -5,7 +5,7 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit --project tsconfig.test.json"
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.2.31",

Просмотреть файл

@ -1,12 +0,0 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "playwright"],
"exclude": ["src/**/*.spec.*/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}

Просмотреть файл

@ -1,14 +1,17 @@
{
"files": [],
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "playwright"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"ignoreDeprecations": "5.0"
},
"references": [
{
"path": "./tsconfig.config.json"
},
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.test.json"
"path": "./tsconfig.node.json"
}
]
}

Просмотреть файл

@ -3,6 +3,7 @@
"include": ["vite.config.*", "playwright.config.*"],
"compilerOptions": {
"composite": true,
"types": ["node"]
"types": ["node"],
"ignoreDeprecations": "5.0"
}
}
}

Просмотреть файл

@ -1,10 +0,0 @@
{
"extends": "./tsconfig.app.json",
"include": ["playwright", "env.d.ts", "src/**/*"],
"compilerOptions": {
"composite": true,
"lib": [],
"types": ["node"],
"ignoreDeprecations": "5.0"
}
}