I can not understand.
Created by tsconfig.json :
{ "compilerOptions": { "module": "system", "noImplicitAny": true, "removeComments": true, "preserveConstEnums": true, "outFile": "./index.js", "sourceMap": true }, "exclude": [ "node_modules", "wwwroot" ] } And simple ts code:
var list: number[] = [10, 20, 30]; var colors: string[] = ["red", "green", "blue"]; console.log(list[0]); console.log(colors[1]); And what next to do I have no idea. Tell me how to start this miracle when I click Run , it gives me the Edit Configuration submenu. In which I do not understand what to configure.