@mrpelz/boilerplate-node 15.1.0 → 15.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrpelz/boilerplate-node",
3
- "version": "15.1.0",
3
+ "version": "15.1.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",
@@ -84,7 +84,8 @@ EOF
84
84
  cat <<EOF
85
85
  {
86
86
  "compilerOptions": {
87
- "outDir": "dist"
87
+ "outDir": "dist",
88
+ "rootDir": "src"
88
89
  },
89
90
  "extends": "$BOILERPLATE_NODE_MODULE_NAME/tsconfig.json",
90
91
  "include": ["src/**/*"]
@@ -108,6 +109,9 @@ EOF
108
109
  make_config tsconfig.meta.json "$(
109
110
  cat <<EOF
110
111
  {
112
+ "compilerOptions": {
113
+ "rootDir": "."
114
+ },
111
115
  "exclude": ["dist/**/*", "node_modules/**/*", "packages/**/*", "src/**/*"],
112
116
  "extends": "$BOILERPLATE_NODE_MODULE_NAME/tsconfig.meta.json",
113
117
  "include": ["**/*.js", "**/*.mjs"]