
TypeScript
TypeScript
veejaLiu
nice to meet you.
展开
-
TypeScript Compile Options
Compile Options 1. -w, --watch Watch input files. Run the compiler in monitor mode. The output files will be monitored, and when source files changes, they will be recompiled automatically. # monitor test.ts tsc -w test.ts # monitor every files tsc -w原创 2021-04-13 14:35:57 · 438 阅读 · 1 评论 -
TypeScript Basic Type
1. Any any type: let number_a: any; number_a = "abc"; number_a = 11; number_a = false;原创 2021-04-13 11:31:25 · 321 阅读 · 0 评论