Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# Release
`npm publish`

3
Java/WebServer/webserver/node_modules/tsc/README.md generated vendored Normal file
View File

@@ -0,0 +1,3 @@
## DEPRECATED.
Use [`typescript`](https://www.npmjs.com/package/typescript) to get access to the `tsc` CLI command.

2
Java/WebServer/webserver/node_modules/tsc/bin/tsc generated vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env node
require('./tsc.js')

47
Java/WebServer/webserver/node_modules/tsc/bin/tsc.js generated vendored Normal file
View File

@@ -0,0 +1,47 @@
// @ts-check
// https://stackoverflow.com/questions/9781218/how-to-change-node-jss-console-font-color
const colours = {
reset: "\x1b[0m",
bright: "\x1b[1m",
dim: "\x1b[2m",
underscore: "\x1b[4m",
blink: "\x1b[5m",
reverse: "\x1b[7m",
hidden: "\x1b[8m",
fg: {
black: "\x1b[30m",
red: "\x1b[31m",
green: "\x1b[32m",
yellow: "\x1b[33m",
blue: "\x1b[34m",
magenta: "\x1b[35m",
cyan: "\x1b[36m",
white: "\x1b[37m",
crimson: "\x1b[38m" // Scarlet
},
bg: {
black: "\x1b[40m",
red: "\x1b[41m",
green: "\x1b[42m",
yellow: "\x1b[43m",
blue: "\x1b[44m",
magenta: "\x1b[45m",
cyan: "\x1b[46m",
white: "\x1b[47m",
crimson: "\x1b[48m"
}
};
console.log()
const msg = " This is not the tsc command you are looking for "
console.log(colours.bg.red + " ".repeat(msg.length) + colours.reset)
console.log(colours.bg.red + colours.fg.white + msg + colours.reset);
console.log(colours.bg.red + " ".repeat(msg.length) + colours.reset)
console.log()
console.log(`To get access to the TypeScript compiler, ${colours.fg.blue}tsc${colours.reset}, from the command line either:\n`)
console.log(`- Use ${colours.bright}npm install typescript${colours.reset} to first add TypeScript to your project ${colours.bright}before${colours.reset} using npx`)
console.log(`- Use ${colours.bright}yarn${colours.reset} to avoid accidentally running code from packages which haven't been installed`)

50
Java/WebServer/webserver/node_modules/tsc/package.json generated vendored Normal file
View File

@@ -0,0 +1,50 @@
{
"_from": "tsc",
"_id": "tsc@2.0.3",
"_inBundle": false,
"_integrity": "sha512-SN+9zBUtrpUcOpaUO7GjkEHgWtf22c7FKbKCA4e858eEM7Qz86rRDpgOU2lBIDf0fLCsEg65ms899UMUIB2+Ow==",
"_location": "/tsc",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "tsc",
"name": "tsc",
"escapedName": "tsc",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/tsc/-/tsc-2.0.3.tgz",
"_shasum": "037fe579e3bd67a5cbdaa604b43c6c1991b04bef",
"_spec": "tsc",
"_where": "D:\\Programmierstuff\\Java\\WebServer\\webserver",
"author": {
"name": "basaratali@gmail.com"
},
"bin": {
"tsc": "bin/tsc"
},
"bugs": {
"url": "https://github.com/basarat/tsc/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "A deprecated release of the TypeScript compiler",
"homepage": "https://github.com/basarat/tsc#readme",
"keywords": [
"typescript"
],
"license": "MIT",
"main": "./bin/tsc.js",
"name": "tsc",
"repository": {
"type": "git",
"url": "git+https://github.com/basarat/tsc.git"
},
"version": "2.0.3"
}