@esportsplus/typescript 0.7.1 → 0.8.3

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/bin/tsc ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { spawn } = require('child_process');
4
+ const path = require('path');
5
+
6
+ const tscPath = path.join(__dirname, '../node_modules/.bin/tsc');
7
+ const args = process.argv.slice(2);
8
+
9
+ spawn(tscPath, args, { stdio: 'inherit' });
package/bin/tsc-alias ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('tsc-alias/node_modules/.bin/tsc-alias');
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "author": "ICJR",
3
+ "bin": {
4
+ "tsc": "./bin/tsc",
5
+ "tsc-alias": "./bin/tsc-alias"
6
+ },
3
7
  "dependencies": {
4
8
  "tsc-alias": "^1.8.16",
5
9
  "typescript": "^5.8.3"
6
10
  },
7
- "devDependencies": {
8
- "tsx": "^4.19.4"
9
- },
10
11
  "exports": {
11
12
  "./package.json": "./package.json",
12
13
  "./tsconfig.browser.json": "./tsconfig.browser.json",
@@ -27,5 +28,5 @@
27
28
  "prepublishOnly": "npm run build"
28
29
  },
29
30
  "types": "build/index.d.ts",
30
- "version": "0.7.1"
31
+ "version": "0.8.3"
31
32
  }