@4mbl/tsconfig 0.0.0-beta.d1ebf2c → 0.0.0-beta.ea94d8e

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/CHANGELOG.md CHANGED
@@ -5,7 +5,6 @@
5
5
  * Migrated from versioned templates to a single template per type. The package version is now used to determine the template version. This simplifies both the maintenance and usage of the package.
6
6
  * Enabled the following options in the base template:
7
7
  * `declarationMap`
8
- * `composite`
9
8
  * `tsBuildInfoFile` set to `node_modules/.tmp/tsbuildinfo`
10
9
  * `verbatimModuleSyntax`
11
10
  * `allowSyntheticDefaultImports`
package/base.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Base",
4
- "_version": "3.0.0",
5
4
  "compilerOptions": {
6
5
  /* Base Options */
7
6
  "lib": ["ESNext"],
@@ -19,7 +18,6 @@
19
18
  "outDir": "${configDir}/dist",
20
19
  "sourceMap": true,
21
20
  "declarationMap": true,
22
- "composite": true,
23
21
  "declaration": true,
24
22
  "incremental": true,
25
23
  "isolatedModules": true,
package/browser.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Browser",
4
- "_version": "3.0.0",
5
- "extends": "../base/3.0.0.json",
4
+ "extends": "./base.json",
6
5
  "compilerOptions": {
7
6
  "lib": ["DOM", "DOM.Iterable", "ESNext"],
8
7
  "jsx": "react-jsx",
package/next.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Next.js",
4
- "_version": "3.0.0",
5
- "extends": "../base/3.0.0.json",
4
+ "extends": "./base.json",
6
5
  "compilerOptions": {
7
6
  "target": "ES2017",
8
7
  "lib": ["dom", "dom.iterable", "esnext"],
package/node.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Node",
4
- "_version": "3.0.0",
5
- "extends": "../base/3.0.0.json",
4
+ "extends": "./base.json",
6
5
  "compilerOptions": {
7
6
  "target": "ESNext",
8
7
  "moduleResolution": "NodeNext",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/tsconfig",
3
- "version": "0.0.0-beta.d1ebf2c",
3
+ "version": "0.0.0-beta.ea94d8e",
4
4
  "description": "TypeScript configuration templates for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",