We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1baf97 commit b917842Copy full SHA for b917842
test/fixtures/parse_args/tsconfig.main.json
@@ -0,0 +1,3 @@
1
+{
2
+ "include": ["src/main.ts"]
3
+}
test/parse_args.test.ts
@@ -73,4 +73,26 @@ export src/a.ts:2:0 'a2'
73
);
74
assert.equal(code, 1);
75
});
76
+
77
+ it('should work with custom tsconfig.json', async () => {
78
+ const { stdout, code } = await exec(
79
+ `node ${bin} --project tsconfig.main.json 'src/main\\.ts$'`,
80
+ {
81
+ cwd: projectRoot,
82
+ },
83
+ )
84
+ .then((res) => ({ ...res, code: 0 }))
85
+ .catch((e) => e as { stdout: string; code: number });
86
87
+ const output = stripAnsi(stdout.toString());
88
89
+ assert.equal(
90
+ output,
91
+ `tsconfig tsconfig.main.json
92
+Project has 1 file. Found 1 entrypoint file
93
+✔ all good!
94
+`,
95
+ );
96
+ assert.equal(code, 0);
97
+ });
98
0 commit comments