2017-10-18 36 views
0

我是新來的TypeScript,並且正在嘗試創建一個新項目。我嘗試安裝TypeScript作爲本地文件夾,而不是在官方網站推薦的全球。'tsc'不被識別爲內部或外部命令,可操作程序或批處理文件

這裏是我的tsconfig.json

{ 
    "compilerOptions": { 
     "outDir": "./built", 
     "allowJs": true, 
     "target": "es5", 
     "module": "system", 
     "noImplicitAny": true, 
     "removeComments": true, 
     "preserveConstEnums": true, 
     "outFile": "../../built/local/tsc.js", 
     "sourceMap": true 
    }, 
    "include": [ 
     "./src/**/*" 
    ], 
    "exclude": [ 
     "node_modules", 
     "**/*.spec.ts" 
    ] 
} 

我的目錄結構

enter image description here

錯誤

enter image description here

尋找幫助,如何解決這個問題。

回答

0

您是否安裝了Typescript? 嘗試npm install -g typescript

編輯

對不起沒有看到你在細節問題。要在本地安裝它,你應該首先將它添加到你的包json:npm install --save-dev typescript

然後你可以找到它在int node_modules/.bin文件夾。喲可以這樣運行:node_modules/.bin/tsc

如果您想手動安裝它,即下載二進制文件(不推薦),請確保將二進制文件放在PATH位置。例如。 c:\windows(完全不推薦)

相關問題