摘要: (()=>{ //枚举 enum Color{ RED, GREEN } //使用 let color:Color color=Color.RED })() 阅读全文
posted @ 2024-07-24 22:50 关键步就几步 阅读(7) 评论(0) 推荐(0) 编辑
摘要: (function () { //类 var Person = /** @class */ (function () { function Person(name, age) { this.name = name; this.age = age; } return Person; }()); fun 阅读全文
posted @ 2024-07-24 22:19 关键步就几步 阅读(10) 评论(0) 推荐(0) 编辑
摘要: interface Person{ name:string age:number } function sayhi(p:Person){ console.log(p.name+" : "+p.age) } let p={ name:'daye', age:18 } console.log(sayhi 阅读全文
posted @ 2024-07-24 22:10 关键步就几步 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 最近写npm包时执行 tsc ./src/index.ts 后,生成的文件没有到dist目录下去。 这是因为tsc ./src/index.ts后会忽略tsconfig.json的配置,所以设置的outDir没有作用,直接使用tsc就可以啦,不用接文件名 阅读全文
posted @ 2024-07-24 21:22 关键步就几步 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 管理cmd或者管理vscode打开terminal都可以,只要是管理身份打开就行,依次输入下面的命令: get-ExecutionPolicy Restricted :受限制的,所以解开限制就行了 set-ExecutionPolicy RemoteSigned 再次输入get-ExecutionP 阅读全文
posted @ 2024-07-24 20:42 关键步就几步 阅读(50) 评论(0) 推荐(0) 编辑