Suchergebnisse für Anfrage "tsc"

2 die antwort

tsc ohne node_modules

{ "compilerOptions": { "target": "es5", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, "noImplicitAny": false }, "exclude": [ ...

6 die antwort

Wie verbraucht man npm-Module aus Typoskript?

Ich versuche es mit Typoskript. Es funktioniert gut auf der hallo Weltbühne. Ich versuche jetzt, ein Npm-Modul zu verwenden: index.ts = import _ = require('lodash') console.log(_.toUpper('Hello, world !'))Das funktioniert nicht: tsc index.ts ...

10 die antwort

Gibt es eine Möglichkeit, npm-Skripte zum Ausführen von tsc -watch && nodemon --watch zu verwenden?

Ich suche nach einer Möglichkeit, npm-Skripte zum Ausführen von @ zu verwendetsc --watch && nodemon --watch zur selben Zeit. Ich kann diese Befehle unabhängig ausführen, aber wenn ich beide ausführen möchte, wird nur der erste ausgeführt. z.B. ...

TOP-Veröffentlichungen

2 die antwort

SystemJS: Build-Datei wird geladen

Meine SystemJS-Datei sieht folgendermaßen aus: (function(global) { // map tells the System loader where to look for things var map = { 'angular2-boot': 'app', // 'dist', '@angular': 'node_modules/@angular', 'angular2-in-memory-web-api': ...