TypeScript配置:如何在Node.js中使用TypeScript
要在Node.js中使用TypeScript,您需要执行以下步骤:
初始化Node.js项目(如果尚未初始化):
npm init -y
安装TypeScript和ts-node(一个用于执行TypeScript代码的工具):
npm install --save-dev typescript ts-node
创建一个
tsconfig.json
文件,该文件包含TypeScript编译选项:npx tsc --init
您可能需要编辑
tsconfig.json
来满足您的具体需求。将你的入口文件(例如
index.ts
)添加到package.json
的"scripts"部分,以便可以使用npm脚本运行它:"scripts": { "start": "ts-node ./index.ts" }
写TypeScript代码,例如在
index.ts
文件中:const helloWorld = (): void => { console.log('Hello, TypeScript on Node.js!'); }; helloWorld();
运行您的TypeScript代码:
npm start
这样,您就可以在Node.js环境中使用TypeScript了。
评论已关闭