Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.2
Choose a base ref
...
head repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.3
Choose a head ref
  • 4 commits
  • 3 files changed
  • 4 contributors

Commits on Aug 2, 2016

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    5f56d63 View commit details

Commits on Aug 18, 2016

  1. Copy the full SHA
    b792db5 View commit details
  2. Delete declarationDir compiler option before running (#177)

    Steven authored and blakeembrey committed Aug 18, 2016
    Copy the full SHA
    7e06936 View commit details
  3. v1.2.3

    blakeembrey committed Aug 18, 2016
    Copy the full SHA
    b11180e View commit details
Showing with 4 additions and 3 deletions.
  1. +1 −1 README.md
  2. +2 −2 package.json
  3. +1 −0 src/index.ts
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ echo "console.log('Hello, world!')" | ts-node
### Mocha

```sh
mocha --compilers ts:ts-node/register --compilers tsx:ts-node/register [...args]
mocha --compilers ts:ts-node/register,tsx:ts-node/register [...args]
```

### Tape
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-node",
"version": "1.2.2",
"version": "1.2.3",
"preferGlobal": true,
"description": "TypeScript execution environment and REPL for node",
"main": "dist/index.js",
@@ -47,7 +47,7 @@
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^2.1.0",
"mocha": "^3.0.0",
"ntypescript": "^1.201507091536.1",
"proxyquire": "^1.7.2",
"semver": "^5.1.0",
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -346,6 +346,7 @@ function readConfig (options: Options, cwd: string, ts: TSCommon) {
// Delete options that *should not* be passed through.
delete result.config.compilerOptions.out
delete result.config.compilerOptions.outFile
delete result.config.compilerOptions.declarationDir

const basePath = result.path ? dirname(result.path) : cwd