JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q47776F
  • License MIT

Update the files property of tsconfig.json

Package Exports

  • ts-globber

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-globber) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status

Ts-globber

Re-propagate the 'files' property of your tsconfig.json.

Installation

// As a cli-tool
npm install -g ts-globber

// As a node module
npm install ts-globber --save

Example Usage

Use it in your Visual Studio Code build task:

{
    "version": "0.1.0",
    "command": "tsglob",
    "args": ["&&","tsc"],
    "isShellCommand": true,
    "showOutput": "silent",
    "problemMatcher": "$tsc"
}
// CLI
cd ~/projects/myTsProject
tsglob


// Module -- in code
var tsglobber = require("ts-globber");
tsglobber();

// Module -- command line
node node_modules/ts-globber/bin/index.js