xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Node.js & ES Modules & TypeScript All In One

Node.js & ES Modules & TypeScript All In One

ES Modules

// fix TS throw duplicate declare `test` bug ✅
export {};

const test = (msg: string) => {
  console.log(msg);
};

test('hello TS');

TypeScript types

// ts
const test = (msg: string) => {
  console.log(msg);
};

test('hello TS');

pure js / vanilla javascript ✅

// js
const test = (msg) => {
  console.log(msg);
};

test('hello TS');


refs

node run .ts file OK ???

https://www.imooc.com/video/23203



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @ 2021-05-21 23:25  xgqfrms  阅读(60)  评论(2编辑  收藏  举报