Änderungen

Zur Navigation springen Zur Suche springen
199 Bytes hinzugefügt ,  20:39, 13. Apr. 2023
Zeile 72: Zeile 72:  
   npx ts-jest config:init
 
   npx ts-jest config:init
   −
=== Beispiel für Kommandozeilen-Programm in Typescript ===
+
==== Beispiel für Kommandozeilen-Programm in Typescript ====
    
Zuerst Schritte ausführen wie in [[TypeScript#Beispiel_f.C3.BCr_Library_in_Typescript]].
 
Zuerst Schritte ausführen wie in [[TypeScript#Beispiel_f.C3.BCr_Library_in_Typescript]].
Zeile 86: Zeile 86:  
     "APPNAME":"./dist/index.js"
 
     "APPNAME":"./dist/index.js"
 
   }
 
   }
 +
  "scripts": {
 +
    "test": "jest",
 +
    "test:watch": "jest --watch",
 +
    "build": "tsc",
 +
    "dev:version": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' 'src/index.ts' -- '--version'", 
 +
  },
 
In src/index.ts
 
In src/index.ts
 
    
 
    

Navigationsmenü