Skip to content

Commit e2307ad

Browse files
committed
Move again
1 parent dc6ffbd commit e2307ad

9 files changed

Lines changed: 23 additions & 11 deletions

File tree

packages/6.0-library/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/typescript6/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# `@typescript/typescript6`
2+
3+
This package provides a `tsc6` command that runs TypeScript 6's `tsc`.
4+
5+
It also reexports the TypeScript 6 API, so you can import it in your code:
6+
7+
```ts
8+
import ts6 from "@typescript/typescript6";
9+
```

packages/typescript6/bin/tsc6

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env node
2+
require('../lib/tsc.js')

packages/typescript6/lib/tsc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require("typescript/lib/tsc.js");
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@typescript/6.0-library",
2+
"name": "@typescript/typescript6",
33
"version": "6.0.0-0",
44
"author": "Microsoft Corp.",
55
"homepage": "https://www.typescriptlang.org/",
@@ -21,12 +21,15 @@
2121
},
2222
"main": "./lib/typescript.js",
2323
"types": "./lib/typescript.d.ts",
24+
"bin": {
25+
"tsc6": "./bin/tsc6"
26+
},
2427
"files": [
2528
"lib",
2629
"LICENSE.txt",
2730
"README.md"
2831
],
2932
"dependencies": {
30-
"typescript": "<=6"
33+
"typescript": "^6"
3134
}
3235
}

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)