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