@jterrazz/typescript 1.9.6 → 2.0.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Package Typescript
|
|
2
2
|
|
|
3
|
-
This package provides a consistent TypeScript configuration for projects. It includes two commands: `
|
|
3
|
+
This package provides a consistent TypeScript configuration for projects. It includes two commands: `ts-compiler` and `ts-runner`.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -28,8 +28,8 @@ Use the provided `tsconfig.json` in your project:
|
|
|
28
28
|
|
|
29
29
|
### Commands
|
|
30
30
|
|
|
31
|
-
- `
|
|
32
|
-
- `
|
|
31
|
+
- `ts-compiler`: Compile TypeScript files.
|
|
32
|
+
- `ts-runner`: Execute TypeScript files.
|
|
33
33
|
|
|
34
34
|
## Implementation Details
|
|
35
35
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jterrazz/typescript",
|
|
3
3
|
"author": "Jean-Baptiste Terrazzoni <jterrazzoni@gmail.com>",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"tsconfig",
|
|
7
7
|
"bin"
|
|
8
8
|
],
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"ts-compile": "bin/ts-compile.sh",
|
|
12
|
+
"ts-watch": "bin/ts-watch.sh"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {},
|
|
15
15
|
"devDependencies": {
|
|
File without changes
|
|
File without changes
|