@jterrazz/typescript 1.9.5 → 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: `swc-compiler` and `swc-runner`.
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
- - `swc-compiler`: Compile TypeScript files using SWC.
32
- - `swc-runner`: Execute TypeScript files using SWC.
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": "1.9.5",
4
+ "version": "2.0.0",
5
5
  "files": [
6
6
  "tsconfig",
7
7
  "bin"
8
8
  ],
9
9
  "type": "module",
10
10
  "bin": {
11
- "swc-compile": "bin/swc-compile.sh",
12
- "swc-watch": "bin/swc-watch.sh"
11
+ "ts-compile": "bin/ts-compile.sh",
12
+ "ts-watch": "bin/ts-watch.sh"
13
13
  },
14
14
  "scripts": {},
15
15
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "display": "Expo",
3
- "include": ["./src/"],
3
+ "include": ["../../../../src/"],
4
4
 
5
5
  "compilerOptions": {
6
6
  "allowJs": true,
@@ -12,12 +12,5 @@
12
12
  "resolveJsonModule": true,
13
13
  "skipLibCheck": true,
14
14
  "target": "ESNext"
15
- },
16
-
17
- "exclude": [
18
- "node_modules",
19
- "babel.config.js",
20
- "metro.config.js",
21
- "jest.config.js"
22
- ]
15
+ }
23
16
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "display": "ESM",
3
- "include": ["./src/"],
3
+ "include": ["../../../../src/"],
4
4
 
5
5
  "compilerOptions": {
6
6
  "moduleResolution": "bundler",
@@ -11,7 +11,5 @@
11
11
  "esModuleInterop": true,
12
12
  "resolveJsonModule": true,
13
13
  "skipLibCheck": true
14
- },
15
-
16
- "exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
14
+ }
17
15
  }
File without changes
File without changes