Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(typescript): Disable type checking #2446

Merged
merged 13 commits into from
Sep 2, 2020

Commits on Aug 30, 2020

  1. feat(typescript): Disable type checking

    DIsable type checking by inserting `// @ts-nocheck` and removing all other `// @ts-xxx` directives. This is done in the instrumenter, by parsing the input files and scanning the comments.
    
    It can be configured with:
    
    ```json
    {
      "sandbox": {
        "disableTypeChecking": "**/*.ts"
      }
    }
    ```
    
    You can disable it completely by setting `disableTypeChecking` to `false`.
    
    This setting replaces both `sandbox.fileHeaders` and `sandbox.stripComments`.
    nicojs committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    8f27af9 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. Implement error handling

    nicojs committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    c3da189 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    838afc7 View commit details
    Browse the repository at this point in the history
  3. fix compile errors

    nicojs committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    d5d2828 View commit details
    Browse the repository at this point in the history
  4. Remove only 😅

    nicojs committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    016bb11 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7cf9bab View commit details
    Browse the repository at this point in the history
  6. fix test

    nicojs committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    3beec1f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f88d114 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5fb786b View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2020

  1. Configuration menu
    Copy the full SHA
    0670415 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c37faff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    210d82c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    22c5874 View commit details
    Browse the repository at this point in the history