@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 +1 -1
- package/scripts/bootstrap.sh +7 -1
- package/tsconfig.json +3 -1
- package/tsconfig.meta.json +2 -1
package/package.json
CHANGED
package/scripts/bootstrap.sh
CHANGED
|
@@ -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
package/tsconfig.meta.json
CHANGED