We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd9e5b commit f62047bCopy full SHA for f62047b
3 files changed
packages/cli-v3/tsconfig.json
@@ -5,6 +5,9 @@
5
},
6
{
7
"path": "./tsconfig.e2e.test.json"
8
+ },
9
+ {
10
+ "path": "./tsconfig.test.json"
11
}
12
]
13
packages/cli-v3/tsconfig.src.json
@@ -1,6 +1,7 @@
1
2
"extends": "../../.configs/tsconfig.base.json",
3
"include": ["./src/**/*.ts"],
4
+ "exclude": ["./src/**/*.test.ts"],
"compilerOptions": {
"isolatedDeclarations": false,
"composite": true,
packages/cli-v3/tsconfig.test.json
@@ -0,0 +1,11 @@
+{
+ "extends": "../../.configs/tsconfig.base.json",
+ "include": ["./src/**/*.ts"],
+ "references": [{ "path": "./tsconfig.src.json" }],
+ "compilerOptions": {
+ "isolatedDeclarations": false,
+ "composite": true,
+ "customConditions": ["@triggerdotdev/source"],
+ "types": ["vitest/globals"]
+ }
+}
0 commit comments