@eclipse-glsp/ts-config 0.9.0-next.f02032cc → 0.9.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 +4 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -5,14 +5,14 @@ Common shared configuration for Eclipse GLSP components that are based on Typesc
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
yarn add --dev @eclipse-glsp/ts-config
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
**Create a `tsconfig.json`**:
|
|
14
14
|
|
|
15
|
-
```
|
|
15
|
+
```json
|
|
16
16
|
{
|
|
17
17
|
"extends": "@eclipse-glsp/ts-config/tsconfig.json",
|
|
18
18
|
"compilerOptions": {
|
|
@@ -24,4 +24,5 @@ $ yarn add --dev @eclipse-glsp/ts-config
|
|
|
24
24
|
|
|
25
25
|
## More information
|
|
26
26
|
|
|
27
|
-
For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/).
|
|
27
|
+
For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/).
|
|
28
|
+
If you have questions, please raise them in the [discussions](https://github.com/eclipse-glsp/glsp/discussions) and have a look at our [communication and support options](https://www.eclipse.org/glsp/contact/).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/ts-config",
|
|
3
|
-
"version": "0.9.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Shared Typescript configuration for GLSP projects",
|
|
5
5
|
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
|
|
6
6
|
"keywords": [
|
|
@@ -29,5 +29,6 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
-
"main": "tsconfig.json"
|
|
32
|
+
"main": "tsconfig.json",
|
|
33
|
+
"gitHead": "b1394ad8c3328a22eb1335d9bd85728a69951a72"
|
|
33
34
|
}
|