安装:

npm i -g typescript

解决Vscode禁止脚本运行

  • 管理员运行Vscode

  • 打开终端输入

  • get-ExecutionPolicy

  • set-ExecutionPolicy RemoteSigned

编译运行

  1. 编译指定文件

tsc —outDir 输出文件的目录 要编译的ts文件

  1. 以指定版本编译ts文件

tsc —outDir 输出文件的目录 —target es3/es5/es6 要编译的ts文件

  1. 持续监听文件变化并编译

tsc —outDir 输出文件的目录 —target es3/es5/es6 —watch 要编译的ts文件

编译配置文件

在前面的基础上我们可以配置一个tsconfig.json文件 来便捷的配置ts文件编译

  1. {
  2. "compilerOptions":{
  3. "outDir":"../dist",
  4. "target":"es6", //指定编译版本
  5. "watch":true,
  6. "moduleResolution": "node", //解决node报错
  7. "strictNullChecks": true, //严格检测null类型赋值报错
  8. "noImplicitAny":true //严格检测any类型的函数参数定义
  9. },
  10. "include":["../src/**/*"]
  11. }

使用指定的编译配置文件运行

tsc - p 编译文件或者目录

编译报错

Cannot find module ‘vite’. Did you mean to set the ‘moduleResolution’ option to ‘node’, or to add aliases to the ‘paths’ option?

在配置文件中写入:

  1. {
  2. "compilerOptions":{
  3. + "moduleResolution": "node"
  4. },
  5. "include":["../src/**/*"]
  6. }
配置ts webpack运行环境

开发依赖和环境

  1. "devDependencies": {
  2. "html-webpack-plugin": "^5.5.0",
  3. "ts-loader": "^9.2.8",
  4. "typescript": "^4.6.2",
  5. "webpack": "^5.70.0",
  6. "webpack-cli": "^4.9.2",
  7. "webpack-dev-server": "^4.7.4"
  8. }
  9. "scripts": {
  10. "build": "webpack",
  11. "serve": "webpack serve"
  12. }

webpack配置:

  1. const HtmlWebpackPlugin = require('html-webpack-plugin')
  2. const path = require('path')
  3. module.exports = {
  4. mode: "development",
  5. entry: "./src/main.ts",
  6. output: {
  7. path: path.resolve(__dirname, 'dist'),
  8. filename: "dist/bundle.js"
  9. },
  10. resolve: {
  11. extensions: ['.ts', '.js', '.json']
  12. },
  13. module: {
  14. rules: [
  15. {
  16. test: /\.ts$/,
  17. loader: 'ts-loader'
  18. }
  19. ]
  20. },
  21. plugins: [
  22. new HtmlWebpackPlugin({
  23. template: "./index.html"
  24. })
  25. ]
  26. }

运行结构:

命令以及安装 - 图1