@mrpelz/boilerplate-preact 15.1.1 → 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 +4 -2
- package/tsconfig.json +2 -1
- package/tsconfig.meta.json +2 -1
package/package.json
CHANGED
package/scripts/bootstrap.sh
CHANGED
|
@@ -118,7 +118,8 @@ EOF
|
|
|
118
118
|
{
|
|
119
119
|
"compilerOptions": {
|
|
120
120
|
"outDir": "dist",
|
|
121
|
-
"rootDir": "src"
|
|
121
|
+
"rootDir": "src",
|
|
122
|
+
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
|
|
122
123
|
},
|
|
123
124
|
"extends": "$BOILERPLATE_PREACT_MODULE_NAME/tsconfig.json",
|
|
124
125
|
"include": ["src/**/*"]
|
|
@@ -143,7 +144,8 @@ EOF
|
|
|
143
144
|
cat <<EOF
|
|
144
145
|
{
|
|
145
146
|
"compilerOptions": {
|
|
146
|
-
"rootDir": "."
|
|
147
|
+
"rootDir": ".",
|
|
148
|
+
"tsBuildInfoFile": "dist/tsconfig.meta.tsbuildinfo"
|
|
147
149
|
},
|
|
148
150
|
"exclude": ["dist/**/*", "node_modules/**/*", "packages/**/*", "src/**/*"],
|
|
149
151
|
"extends": "$BOILERPLATE_PREACT_MODULE_NAME/tsconfig.meta.json",
|
package/tsconfig.json
CHANGED
package/tsconfig.meta.json
CHANGED