安装 TypeScript 并编译成JS
要在你的项目中安装TypeScript并将其编译成JavaScript,你需要按照以下步骤操作:
- 确保你有Node.js和npm(Node.js包管理器)安装在你的计算机上。
- 在你的项目根目录中,运行以下命令来初始化一个新的npm项目(如果你还没有一个)并安装TypeScript:
npm init -y
npm install typescript --save-dev
- 创建一个
tsconfig.json
文件,该文件包含TypeScript编译器的配置选项。可以通过运行以下命令来生成一个默认的tsconfig.json
文件:
npx tsc --init
- 编写你的TypeScript文件,比如
index.ts
。
// index.ts
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet('World'));
- 使用TypeScript编译器将TypeScript文件编译成JavaScript。你可以手动运行编译器,也可以在
package.json
中添加一个脚本来自动执行编译。
手动编译:
npx tsc
或者添加一个npm脚本到package.json
:
{
"scripts": {
"build": "tsc"
}
}
然后运行:
npm run build
这将生成一个index.js
文件,包含从index.ts
文件转换过来的JavaScript代码。
评论已关闭