typescript

typescript node入門參考html

http://www.javashuo.com/article/p-numigcpg-dx.htmlvue

typescript vue入門參考node

http://www.javashuo.com/article/p-yiyczsls-ke.htmltypescript

全局安裝typescript最近版本,tsc -v正常顯示爲安裝成功json

打開當前項目,tsc --init,自動生成tsconfig.jsonsegmentfault

tsconfig.json詳解

能夠被忽略,這時編譯器會使用默認值。在這裏查看完整編輯項完整的列表。
"extends"繼承配置
和屬性指定一個文件glob匹配模式列表。(指定編譯)
"files"包含指定文件列表。
"compilerOptions""include""exclude"
{  
   "extends": "./configs/base",
  "compilerOptions": {
    /* Basic Options */
    "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
    "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
    "outDir": "./public/", /* Redirect output structure to the directory. */
    "sourceMap": true,
    "strict": true,
    "esModuleInterop": true
  },
  "include": [
    "src/*.ts"
  ],
   "exclude": [
     "node_modules"
  ],
  "files":[
    "index.ts",
    "example.ts"
  ]
 
}
相關文章
相關標籤/搜索