microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7421e7dd1015dcbd940bf843d33583470de580ea

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/playground/package.json

14lines · modecode

1{
2 "name": "qsharp-playground",
3 "version": "0.0.0",
4 "type": "module",
5 "description": "Web playground for the qsharp compiler",
6 "private": true,
7 "license": "MIT",
8 "scripts": {
9 "build": "npm run tsc:check && node build.js",
10 "tsc:check": "node ../../node_modules/typescript/bin/tsc -p ./src/tsconfig.json",
11 "tsc:watch": "node ../../node_modules/typescript/bin/tsc -p ./src/tsconfig.json --watch --preserveWatchOutput",
12 "start": "node build.js --serve"
13 }
14}
15