@mrpelz/boilerplate-preact 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-preact",
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",
@@ -117,7 +117,8 @@ EOF
117
117
  cat <<EOF
118
118
  {
119
119
  "compilerOptions": {
120
- "outDir": "dist"
120
+ "outDir": "dist",
121
+ "rootDir": "src"
121
122
  },
122
123
  "extends": "$BOILERPLATE_PREACT_MODULE_NAME/tsconfig.json",
123
124
  "include": ["src/**/*"]
@@ -141,6 +142,9 @@ EOF
141
142
  make_config tsconfig.meta.json "$(
142
143
  cat <<EOF
143
144
  {
145
+ "compilerOptions": {
146
+ "rootDir": "."
147
+ },
144
148
  "exclude": ["dist/**/*", "node_modules/**/*", "packages/**/*", "src/**/*"],
145
149
  "extends": "$BOILERPLATE_PREACT_MODULE_NAME/tsconfig.meta.json",
146
150
  "include": ["**/*.js", "**/*.mjs"]