Skip to content

Commit f1793bf

Browse files
authored
fix: exclude tests from build output
* fix: exclude tests from build output
1 parent 3429b39 commit f1793bf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tsconfig.eslint.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["**/*.ts"]
3+
"include": ["**/*.ts"],
4+
"exclude": ["*.test.ts"]
45
}

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"skipLibCheck": true
1515
},
1616
"include": ["src/**/*.ts"],
17+
"exclude": ["src/**/*.test.ts"],
1718
"ts-node": {
1819
"compilerOptions": {
1920
"module": "NodeNext"

0 commit comments

Comments
 (0)