Skip to content

Commit acf5bda

Browse files
committed
fix(cypress-ct): avoid cypress types polluting normal source files
As pointed out in vuejs#56 (comment)
1 parent 90918d0 commit acf5bda

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "@vue/tsconfig/tsconfig.web.json",
3+
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
4+
"exclude": ["src/**/__tests__/*"],
5+
"compilerOptions": {
6+
"composite": true,
7+
"baseUrl": ".",
8+
"paths": {
9+
"@/*": ["./src/*"]
10+
}
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./tsconfig.app.json",
3+
"exclude": [],
4+
"compilerOptions": {
5+
"composite": true,
6+
"lib": []
7+
}
8+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"files": [],
3+
"references": [
4+
{
5+
"path": "./tsconfig.vite-config.json"
6+
},
7+
{
8+
"path": "./tsconfig.app.json"
9+
},
10+
{
11+
"path": "./tsconfig.cypress-ct.json"
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)