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: v8.5.4
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: v8.6.0
Choose a head ref
  • 18 commits
  • 21 files changed
  • 4 contributors

Commits on Oct 12, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    cb4b748 View commit details

Commits on Oct 14, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    e0a83b5 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    660bcf8 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    topi314 Toπ
    Copy the full SHA
    e8b53df View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    topi314 Toπ
    Copy the full SHA
    a7df137 View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3ac95b4 View commit details

Commits on Oct 26, 2019

  1. Create FUNDING.yml

    blakeembrey authored Oct 26, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d43c55c View commit details

Commits on Nov 11, 2019

  1. Merge branch '8.x'

    blakeembrey committed Nov 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    85710ab View commit details
  2. Update dev dependencies

    blakeembrey committed Nov 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6045a24 View commit details
  3. Rename --build to --emit

    blakeembrey committed Nov 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4dbc15d View commit details

Commits on Dec 3, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    2ba0a8f View commit details

Commits on Dec 27, 2019

  1. Bump handlebars from 4.1.2 to 4.5.3 (#931)

    Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.1.2 to 4.5.3.
    - [Release notes](https://github.com/wycats/handlebars.js/releases)
    - [Changelog](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)
    - [Commits](handlebars-lang/handlebars.js@v4.1.2...v4.5.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and blakeembrey committed Dec 27, 2019
    Copy the full SHA
    dd56112 View commit details

Commits on Jan 9, 2020

  1. Configure using tsconfig.json (#921)

    cspotcode authored and blakeembrey committed Jan 9, 2020
    Copy the full SHA
    1a0ace2 View commit details
  2. Improve docs for --files option (#930)

    ledenis authored and blakeembrey committed Jan 9, 2020
    Copy the full SHA
    3401f59 View commit details
  3. Merge branch '8.x'

    blakeembrey committed Jan 9, 2020
    Copy the full SHA
    aa6f36f View commit details

Commits on Jan 10, 2020

  1. Copy the full SHA
    8834d64 View commit details
  2. Copy the full SHA
    3334305 View commit details
  3. 8.6.0

    blakeembrey committed Jan 10, 2020
    Copy the full SHA
    9aa66ff View commit details
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [blakeembrey]
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -3,3 +3,5 @@ coverage/
.DS_Store
npm-debug.log
dist/
tsconfig.schema.json
tsconfig.schemastore-schema.json
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ script:
env:
- NODE=6 TYPESCRIPT=typescript@latest
- NODE=stable TYPESCRIPT=typescript@latest
- NODE=stable TYPESCRIPT=typescript@2.0
- NODE=stable TYPESCRIPT=typescript@2.7
- NODE=stable TYPESCRIPT=typescript@next

node_js:
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]

> TypeScript execution and REPL for node.js, with source map support. **Works with `typescript@>=2.0`**.
> TypeScript execution and REPL for node.js, with source map support. **Works with `typescript@>=2.7`**.
## Installation

@@ -139,10 +139,11 @@ _Environment variable denoted in parentheses._
* `-O, --compiler-options [opts]` JSON object to merge with compiler options (`TS_NODE_COMPILER_OPTIONS`)
* `--dir` Specify working directory for config resolution (`TS_NODE_CWD`, default: `process.cwd()`)
* `--scope` Scope compiler to files within `cwd` (`TS_NODE_SCOPE`, default: `false`)
* `--files` Load files from `tsconfig.json` on startup (`TS_NODE_FILES`, default: `false`)
* `--files` Load `files`, `include` and `exclude` from `tsconfig.json` on startup (`TS_NODE_FILES`, default: `false`)
* `--pretty` Use pretty diagnostic formatter (`TS_NODE_PRETTY`, default: `false`)
* `--skip-project` Skip project config resolution and loading (`TS_NODE_SKIP_PROJECT`, default: `false`)
* `--skip-ignore` Skip ignore checks (`TS_NODE_SKIP_IGNORE`, default: `false`)
* `--emit` Emit output files into `.ts-node` directory (`TS_NODE_EMIT`, default: `false`)
* `--prefer-ts-exts` Re-order file extensions so that TypeScript imports are preferred (`TS_NODE_PREFER_TS_EXTS`, default: `false`)
* `--log-error` Logs TypeScript errors to stderr instead of throwing exceptions (`TS_NODE_LOG_ERROR`, default: `false`)

@@ -152,6 +153,14 @@ _Environment variable denoted in parentheses._
* `readFile` Custom TypeScript-compatible file reading function
* `fileExists` Custom TypeScript-compatible file existence function

## SyntaxError

Any error that is not a `TSError` is from node.js (e.g. `SyntaxError`), and cannot be fixed by TypeScript or `ts-node`. These are runtime issues with your code.

### Import Statements

Current node.js stable releases do not support ES modules. Additionally, `ts-node` does not have the required hooks into node.js to support ES modules. You will need to set `"module": "commonjs"` in your `tsconfig.json` for your code to work.

## Help! My Types Are Missing!

**TypeScript Node** does _not_ use `files`, `include` or `exclude`, by default. This is because a large majority projects do not use all of the files in a project directory (e.g. `Gulpfile.ts`, runtime vs tests) and parsing every file for types slows startup time. Instead, `ts-node` starts with the script file (e.g. `ts-node index.ts`) and TypeScript resolves dependencies based on imports and references.
@@ -206,7 +215,7 @@ An alternative approach for definitions of third-party libraries are [triple-sla
import UntypedJsLib from "untyped_js_lib"
```

**Tip:** If you _must_ use `files`, enable `--files` flags or set `TS_NODE_FILES=true`.
**Tip:** If you _must_ use `files`, `include`, or `exclude`, enable `--files` flags or set `TS_NODE_FILES=true`.

## Watching and Restarting

Loading