@mrpelz/boilerplate-preact 9.2.7 → 10.1.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": "9.2.7",
3
+ "version": "10.1.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mrpelz/boilerplate.git",
@@ -24,6 +24,7 @@
24
24
  "Makefile",
25
25
  "scripts/**/*.sh",
26
26
  "stylelint.config.js",
27
+ "tsconfig.build.json",
27
28
  "tsconfig.json",
28
29
  "tsconfig.meta.json",
29
30
  "webpack.config.js"
@@ -116,7 +116,9 @@ EOF
116
116
  make_config tsconfig.json "$(
117
117
  cat <<EOF
118
118
  {
119
- "compilerOptions": {},
119
+ "compilerOptions": {
120
+ "outDir": "dist"
121
+ },
120
122
  "extends": "$BOILERPLATE_PREACT_MODULE_NAME/tsconfig.json",
121
123
  "include": ["src/**/*"]
122
124
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "compilerOptions": {
3
+ "noEmit": false
4
+ },
5
+ "exclude": ["**/*.test.ts"],
6
+ "extends": "./tsconfig.json",
7
+ "include": ["src/**/*"]
8
+ }
package/tsconfig.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "jsx": "react-jsx",
4
- "jsxImportSource": "preact"
4
+ "jsxImportSource": "preact",
5
+ "outDir": "dist"
5
6
  },
6
7
  "extends": "@mrpelz/boilerplate-dom/tsconfig.json",
7
8
  "include": ["src/**/*"]