Difference between revisions of "Typescript"

From MgmtWiki
Jump to: navigation, search
(Add to ASP.NET project)
(Add to ASP.NET project)
Line 17: Line 17:
 
## in tsconfig.json change target library to a current version, like  "target": "es2015"
 
## in tsconfig.json change target library to a current version, like  "target": "es2015"
 
## and add this line      "outDir": "wwwroot/js"  which will force the output from the ts compilation to that dir
 
## and add this line      "outDir": "wwwroot/js"  which will force the output from the ts compilation to that dir
# Add>New Item> TypeScript File (Name it anything - say add.ts, we assume you are starting with no JS, so call it site.js)
+
# Add>New Item> TypeScript File (Any name will work, say add.ts, we assume you are starting with no JS, so we call it site.js)
 
## Since we used an existing file, this line is already in the _Layout.cshtml      <script src="~/js/site.js" asp-append-version="true"></script>
 
## Since we used an existing file, this line is already in the _Layout.cshtml      <script src="~/js/site.js" asp-append-version="true"></script>
  

Revision as of 18:02, 4 November 2021

Full Title or Meme

A superscript of JavaScript that adds strong typing and other aids for good programming practice.

Context

JavaScript was becoming more than just a scripting language in 2019 with object-oriented features like asynchronous calls but without strong typing or other features of monder programming languages. since it seemed unlikely that strong typing would ever be included in javascript, typescript was created to add other features that supported good programming practices.


Examples


Add to ASP.NET project

  1. Add>New Item>TypeScript JSON Configuration File (Do Not change its name)
    1. in tsconfig.json change target library to a current version, like "target": "es2015"
    2. and add this line "outDir": "wwwroot/js" which will force the output from the ts compilation to that dir
  2. Add>New Item> TypeScript File (Any name will work, say add.ts, we assume you are starting with no JS, so we call it site.js)
    1. Since we used an existing file, this line is already in the _Layout.cshtml <script src="~/js/site.js" asp-append-version="true"></script>

References