.netcore TypeScript Setup
設定檔tsconfig.json 預設在Vs2015 加入.ts檔案,就會自動在每次儲存時complier,輸出js檔,若要進階設定,.netCore的專案需在根目錄加入組態檔tsconfig.json。參考如下: tsconfig.json { "compilerOptions": { "noImplicitAny": true, "noEmitOnError": true, "sourceMap": true, "target": "es5", "module": "commonjs" }, "exclude": [ "node_modules", "wwwroot/lib", "bin", "obj" ], "compileOnSave": true } 上方的exclude,會排除目錄內的.ts。 若不使用exclude,只想針對特定檔案的話,可以使用 files 參數,此參數要明確指定檔名,例: files:[‘./wwwroot/js/app.ts’]