摘要:
一、类的装饰器 ①package.json中添加dev命令 "dev": "ts-node ./src/index.ts" ②tsconfig.json中把实验类型的支持打开 "experimentalDecorators": true, "emitDecoratorMetadata": true, 阅读全文
摘要:
一、TypeScript中的配置文件 ①生成tsconfig.json文件 npm install typescript -g tsc init ②tsconfig.json文件的作用是typescript对应的编译配置文件 ③运行tsc demo.ts会编译成demo.js文件 ④只有单独输入ts 阅读全文