Skip to main content
Module

x/docx/.vscode/tasks.json

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
Go to Latest
File
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "typescript", "tsconfig": "tsconfig.json", "option": "watch", "problemMatcher": [ "$tsc-watch" ] }, { "type": "npm", "script": "ts-node", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } } ]}