July 2019
Intermediate to advanced
416 pages
10h 6m
English
This project is a simple HTML and TypeScript file combination. Create a directory to hold the HTML and TypeScript files. Our JavaScript will reside in a script folder under this directory. The following tsconfig.json file is used:
{ "compilerOptions": { "target": "ES2015", "module": "commonjs", "sourceMap": true, "outDir": "./script", "strict": true, "strictNullChecks": true, "strictFunctionTypes": true, "noImplicitThis": true, "alwaysStrict": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "esModuleInterop": true, "experimentalDecorators": true, }}
Read now
Unlock full access