- 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,
}
}
推薦閱讀
- Learning OpenDaylight
- Mastering vRealize Operations Manager(Second Edition)
- Windows Server 2019 Cookbook
- 鴻蒙生態:開啟萬物互聯的智慧新時代
- 高性能Linux服務器構建實戰:運維監控、性能調優與集群應用
- Mastering KVM Virtualization
- Windows 7案例教程
- Linux內核觀測技術BPF
- Social Data Visualization with HTML5 and JavaScript
- 分布式高可用架構之道
- Linux 從入門到項目實踐(超值版)
- Linux從入門到精通(視頻教學版)
- Agile IT Security Implementation Methodology
- 操作系統之哲學原理第2版
- Mastering Sass