Skip to content

Commit d0be5fa

Browse files
tsconfig - tests and build fix (#1243)
1 parent 8d27021 commit d0be5fa

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

tsconfig.cjs.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"moduleResolution": "node",
66
"outDir": "./dist/cjs"
77
},
8+
"include": ["src/**/*"],
89
"exclude": ["**/*.test.ts", "src/__mocks__/**/*", "src/__fixtures__/**/*"]
910
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
},
1919
"types": ["node", "vitest/globals"]
2020
},
21-
"include": ["src/**/*"],
21+
"include": ["src/**/*", "test/**/*"],
2222
"exclude": ["node_modules", "dist"]
2323
}

tsconfig.prod.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist/esm"
55
},
6+
"include": ["src/**/*"],
67
"exclude": ["**/*.test.ts", "src/__mocks__/**/*", "src/__fixtures__/**/*"]
78
}

0 commit comments

Comments
 (0)