@mrpelz/boilerplate-node 15.1.0 → 15.2.0

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.2.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",
@@ -84,7 +84,9 @@ EOF
84
84
  cat <<EOF
85
85
  {
86
86
  "compilerOptions": {
87
- "outDir": "dist"
87
+ "outDir": "dist",
88
+ "rootDir": "src",
89
+ "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
88
90
  },
89
91
  "extends": "$BOILERPLATE_NODE_MODULE_NAME/tsconfig.json",
90
92
  "include": ["src/**/*"]
@@ -108,6 +110,10 @@ EOF
108
110
  make_config tsconfig.meta.json "$(
109
111
  cat <<EOF
110
112
  {
113
+ "compilerOptions": {
114
+ "rootDir": ".",
115
+ "tsBuildInfoFile": "dist/tsconfig.meta.tsbuildinfo"
116
+ },
111
117
  "exclude": ["dist/**/*", "node_modules/**/*", "packages/**/*", "src/**/*"],
112
118
  "extends": "$BOILERPLATE_NODE_MODULE_NAME/tsconfig.meta.json",
113
119
  "include": ["**/*.js", "**/*.mjs"]
package/tsconfig.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "outDir": "dist",
4
- "rootDir": "src"
4
+ "rootDir": "src",
5
+ "tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
6
+ "types": ["node"]
5
7
  },
6
8
  "extends": "@mrpelz/boilerplate-common/tsconfig.json",
7
9
  "include": ["src/**/*"]
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "rootDir": "."
3
+ "rootDir": ".",
4
+ "tsBuildInfoFile": "dist/tsconfig.meta.tsbuildinfo"
4
5
  },
5
6
  "exclude": ["dist/**/*", "node_modules/**/*", "packages/**/*", "src/**/*"],
6
7
  "extends": "@mrpelz/boilerplate-common/tsconfig.meta.json",