- 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,
}
}
推薦閱讀
- Kubernetes修煉手冊
- Learning Android Intents
- Windows Server 2012 Hyper-V Cookbook
- macOS效率手冊
- Microsoft Operations Management Suite Cookbook
- Dreamweaver CS5.5 Mobile and Web Development with HTML5,CSS3,and jQuery
- 注冊表應用完全DIY
- Windows Server 2012網絡操作系統項目教程(第4版)
- 一學就會:Windows Vista應用完全自學手冊
- iOS 8開發指南
- 鴻蒙HarmonyOS手機應用開發實戰
- 大規模分布式系統架構與設計實戰
- Multi-Cloud for Architects
- Linux操作系統案例教程(第2版)
- VMware vSphere 5.1 Cookbook