- Advanced TypeScript Programming Projects
- Peter O'Hanlon
- 75字
- 2021-06-24 13:27:09
Getting started with a simple HTML project
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,
}
}
推薦閱讀
- 無蘋果不生活 OS X Mountain Lion隨身寶典
- Kali Linux滲透測試全流程詳解
- vSphere Virtual Machine Management
- Instant Handlebars.js
- 深入理解eBPF與可觀測性
- 云原生落地:產品、架構與商業模式
- Windows 8實戰從入門到精通(超值版)
- VMware Horizon View Essentials
- Advanced Infrastructure Penetration Testing
- 從零開始學安裝與重裝系統
- Learn SwiftUI
- Linux內核API完全參考手冊(第2版)
- 完美應用Ubuntu(第2版)
- Linux操作系統案例教程(第2版)
- Linux指令從初學到精通