我在VS2015中使用File > New > Project
創建了空白HTML application with TypeScript
。Visual Studio 2015 - tsconfig.json - TypeScript 1.6.0 Beta
我在/scripts
文件夾中添加了一個基本的tsconfig.json,並且期待有VS讀取該文件並將.js文件輸出到另一個文件夾中。不幸的是,沒有任何反應這是一個VS甚至沒有找到tsconfig.json
是否有其他人有這個問題?
我知道有一個與1.5以前的問題,但先前修訂似乎不工作: https://github.com/Microsoft/TypeScript/issues/4300
----------------更新9 /二千零十五分之十
這裏有一個樣品tsconfig.json
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"module": "amd",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "../www/scripts/"
},
"files": [
"./scripts/index.ts"
]
}
這裏的另一個tsconfig.json
{
"compilerOptions": {
"target": "es5",
"out": "/wwwroot/scripts/appBundle.js",
"sourceMap": true,
"removeComments": true,
"sourceRoot": "/"
}
}
我爲TypeScript + Cordova項目創建了tsconfig.json文件,並且它們正常工作。
什麼是您的tsconfig.json樣子? –