@codecompose/typescript-config 2.1.0 → 2.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecompose/typescript-config",
3
3
  "description": "Opinionated reusable TypeScript configurations",
4
- "version": "2.1.0",
4
+ "version": "2.1.1",
5
5
  "license": "MIT",
6
6
  "author": "Thijs Koerselman",
7
7
  "publishConfig": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Monorepo shared library",
4
- "extends": "./library.json",
4
+ "extends": "./base.json",
5
5
  "compilerOptions": {
6
6
  /* Required for project references, which provide go-to-definition in your
7
7
  IDE without first having to build the module, which is essential during development. */
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Monorepo shared React component library",
4
- "extends": "./react-library.json",
4
+ "extends": "./base.json",
5
5
  "compilerOptions": {
6
+ "lib": ["dom", "dom.iterable", "esnext"],
7
+ "jsx": "react-jsx",
6
8
  /* Required for project references, which provide go-to-definition in your
7
9
  IDE without first having to build the module, which is essential during development. */
8
10
  "composite": true