@vertexvis/typescript-config-vertexvis 1.0.2 → 1.3.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/README.md CHANGED
@@ -4,7 +4,7 @@ This project contains Vertex's sharable TypeScript configs.
4
4
 
5
5
  It contains a base `tsconfig.json` that includes our base TypeScript settings.
6
6
  The base config contains settings that should be used across Vertex projects. By
7
- default, this includes supporting ES6 language features.
7
+ default, this includes supporting ES2019 language features.
8
8
 
9
9
  The project contains an additional `tsconfig-web.json` for web-based projects.
10
10
  This extends the base configuration, but also includes library definitions for
@@ -19,7 +19,7 @@ project's `package.json`.
19
19
  // package.json
20
20
  {
21
21
  "devDependencies": {
22
- "@vertexvis/typescript-config-vertexvis": "0.0.0"
22
+ "@vertexvis/typescript-config-vertexvis": "1.3.0"
23
23
  }
24
24
  }
25
25
  ```
@@ -34,7 +34,7 @@ configuration settings.
34
34
 
35
35
  "extends": "@vertexvis/typescript-config-vertexvis/tsconfig",
36
36
  "compilerOptions": {
37
- "lib": ["es6", "ES2016.Array.Include"]
37
+ "lib": ["ES2022"]
38
38
  }
39
39
  }
40
40
  ```
package/package.json CHANGED
@@ -1,18 +1,33 @@
1
1
  {
2
2
  "name": "@vertexvis/typescript-config-vertexvis",
3
- "version": "1.0.2",
3
+ "version": "1.3.0",
4
4
  "description": "Sharable TypeScript configs for Vertex",
5
- "author": "Dan Schultz (https://github.com/danschultz)",
5
+ "license": "MIT",
6
+ "author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
7
+ "homepage": "https://github.com/Vertexvis/vertex-web-tools#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Vertexvis/vertex-web-tools.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/Vertexvis/vertex-web-tools/issues"
14
+ },
6
15
  "publishConfig": {
7
16
  "registry": "https://registry.npmjs.org/",
8
17
  "access": "public"
9
18
  },
10
- "license": "MIT",
11
19
  "files": [
12
20
  "tsconfig.json",
13
21
  "tsconfig-web.json",
14
22
  "LICENSE"
15
23
  ],
24
+ "exports": {
25
+ "./tsconfig": "./tsconfig.json",
26
+ "./tsconfig.json": "./tsconfig.json",
27
+ "./tsconfig-web": "./tsconfig-web.json",
28
+ "./tsconfig-web.json": "./tsconfig-web.json",
29
+ "./package.json": "./package.json"
30
+ },
16
31
  "scripts": {
17
32
  "build": "exit 0",
18
33
  "format": "exit 0",
package/tsconfig-web.json CHANGED
@@ -3,6 +3,7 @@
3
3
 
4
4
  "extends": "./tsconfig.json",
5
5
  "compilerOptions": {
6
- "lib": ["es6", "dom"]
7
- }
6
+ "jsx": "react-jsx",
7
+ "lib": ["ES2020", "DOM"],
8
+ },
8
9
  }
package/tsconfig.json CHANGED
@@ -2,16 +2,16 @@
2
2
  "$schema": "http://json.schemastore.org/tsconfig",
3
3
 
4
4
  "compilerOptions": {
5
- "target": "es5",
6
- "module": "esnext",
7
- "moduleResolution": "node",
5
+ "target": "ES2019",
6
+ "module": "ESNext",
7
+ "moduleResolution": "node16",
8
8
  "esModuleInterop": true,
9
9
  "declaration": true,
10
+ "declarationMap": true,
10
11
  "sourceMap": true,
11
12
  "inlineSources": true,
12
- "jsx": "react",
13
13
  "forceConsistentCasingInFileNames": true,
14
14
  "strict": true,
15
- "lib": ["es6"]
16
- }
15
+ "lib": ["ES2020"],
16
+ },
17
17
  }
package/CHANGELOG.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "name": "@vertexvis/typescript-config-vertexvis",
3
- "entries": [
4
- {
5
- "version": "1.0.0",
6
- "tag": "@vertexvis/typescript-config-vertexvis_v1.0.0",
7
- "date": "Mon, 30 Dec 2019 19:04:27 GMT",
8
- "comments": {
9
- "major": [
10
- {
11
- "comment": "Enable esModuleInterop for TypeScript projects",
12
- "author": "Dan Schultz <dan.schultz@vertexvis.com>",
13
- "commit": "dd54355dfad91de77695c26468e0940aee5d962d"
14
- }
15
- ]
16
- }
17
- },
18
- {
19
- "version": "0.1.0",
20
- "tag": "@vertexvis/typescript-config-vertexvis_v0.1.0",
21
- "date": "Wed, 11 Sep 2019 22:29:36 GMT",
22
- "comments": {
23
- "minor": [
24
- {
25
- "comment": "Initial release of shared typescript configs",
26
- "author": "Dan Schultz <dan.schultz@vertexvis.com>",
27
- "commit": "bf3a94f72223cb22a045604d7e7525af22115b7f"
28
- }
29
- ]
30
- }
31
- }
32
- ]
33
- }
package/CHANGELOG.md DELETED
@@ -1,18 +0,0 @@
1
- # Change Log - @vertexvis/typescript-config-vertexvis
2
-
3
- This log was last generated on Mon, 30 Dec 2019 19:04:27 GMT and should not be manually modified.
4
-
5
- ## 1.0.0
6
- Mon, 30 Dec 2019 19:04:27 GMT
7
-
8
- ### Breaking changes
9
-
10
- - Enable esModuleInterop for TypeScript projects
11
-
12
- ## 0.1.0
13
- Wed, 11 Sep 2019 22:29:36 GMT
14
-
15
- ### Minor changes
16
-
17
- - Initial release of shared typescript configs
18
-