770 B
770 B
This file explains how Visual Studio created the project.
The following tools were used to generate this project:
- TypeScript Compiler (tsc)
The following steps were used to generate this project:
- Create project file (
Server.esproj). - Create
launch.jsonto enable debugging. - Create
nuget.configto specify location of the JavaScript Project System SDK (which is used in the first line inServer.esproj). - Install npm packages and create
tsconfig.json:npm init && npm i --save-dev eslint typescript @types/node && npx tsc --init --sourceMap true. - Create
app.ts. - Update
package.jsonentry point. - Update TypeScript build scripts in
package.json. - Create
eslint.config.jsto enable linting. - Add project to solution.
- Write this file.