Skip to content

Commit 81a5f37

Browse files
committed
chore: fix build
1 parent b9c1155 commit 81a5f37

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"@nestjs/core": "^8.2.6",
5252
"@nestjs/testing": "^8.2.6",
5353
"@types/jest": "^27.4.0",
54+
"@types/node": "^17.0.17",
5455
"@typescript-eslint/eslint-plugin": "~5.11.0",
5556
"@typescript-eslint/parser": "~5.11.0",
5657
"conventional-changelog": "^3.1.25",

tsconfig.build.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
"suppressImplicitAnyIndexErrors": true,
1111
"esModuleInterop": true,
1212
"experimentalDecorators": true,
13-
"emitDecoratorMetadata": true
13+
"emitDecoratorMetadata": true,
14+
"outDir": "./dist"
1415
},
16+
"include": ["src/**/*"],
1517
"exclude": [
1618
"**/node_modules",
1719
"**/dist"

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./tsconfig.build.json",
3+
"include": ["src/**/*"],
34
"compilerOptions": {
4-
"baseUrl": "."
5+
"baseUrl": ".",
56
}
67
}

yarn.lock

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)