配置 tsconfig.json

做用

指導編譯器如何生成 JS 文件node

參數

  • target: 編譯目標平臺(es3, es5, es2015)
  • module: 組織代碼方式(commonjs, AMD)
  • sourceMap:編譯文件對應關係
  • outDir:輸出目錄
  • exclude:不包含的編譯目錄
  • removeComments:編譯生成的 JavaScript 文件是否移除註釋
  • noImplicitAny:true/false;爲 false 時,若是編譯器沒法根據變量的使用來判斷類型時,將用 any 類型代替。爲 true 時,進行強類型檢查,會報錯
  • tasks.json:指定編譯的命令
{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "baseUrl": "src",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2016",
      "dom"
    ]
  }
}
相關文章
相關標籤/搜索