2015-07-10 68 views
0

請注意我在tsconfig上遇到奇怪的錯誤?這是沒有原子的。據我可以告訴文件是好的,但我可能會錯過一些東西。仍然錯誤消息不是太有用。 (順便說一下,在Atom中它也有些奇怪,當我查看隨附的file1.ts時,它顯示tsconfig.json文件無效的錯誤,但是當我查看tsconfig.json在原子不同的選項卡文件,它說,沒有錯誤)Typescript報告它不能打開tsconfig,但它就在那裏。怎麼來的?

所以從等式中刪除原子我跑它沒有原子,看到這裏顯示的結果:

modu(master)> tsc 
error TS6050: Unable to open file 'tsconfig.json'. 
modu(master)> ls -l tsconfig.json 
-rw-r--r-- 1 pitosalas staff 267 Jul 9 21:27 tsconfig.json 
modu(master)> cat tsconfig.json 
{ 
    "compilerOptions": { 
     "module": "commonjs", 
     "noImplicitAny": false, 
     "outDir": "built/", 
     "sourceMap": false, 
     "target": "es5", 
    }, 
    "filesGlob": [ 
     "./**/*.ts" 
    ], 
    "files": [ 
     "./file1.ts" 
    ] 
} 
modu(master)> 

回答

0

好吧,我自己找到了。這是「es5」目標後的額外逗號。

但是,一個可怕的錯誤消息:「無法打開文件tsconfig.json」

+0

「它顯示了一個錯誤,該tsconfig.json文件是無效的」 <原子打字稿錯誤應該被「無法JSON.parse該項目文件「,這將引導你走向正確的方向 – basarat

相關問題