Skip to content

Commit

Permalink
Updated tsconfig and package json files to simplify example reference…
Browse files Browse the repository at this point in the history
… to root lib, and removed src folder from publish artifact hierarchy
  • Loading branch information
rbonestell committed Jul 1, 2024
1 parent 05ab920 commit be216ef
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 13 deletions.
42 changes: 32 additions & 10 deletions example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"nest-local-https-proxy": "^1.0.0",
"nest-local-https-proxy": "file:../",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"baseUrl": "src",
"incremental": false,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"outDir": "dist/lib"
"outDir": "dist"
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit be216ef

Please sign in to comment.