I created a blank HTML application with TypeScript using File > New > Project in VS2015.
I added a basic tsconfig.json in a /scripts folder and was expecting to have VS read the file and output the .js files into a different folder. Unfortunately, nothing happens. It's a though VS is not even finding the tsconfig.json
Is anyone else having this problem?
I am aware there was a previous problem with 1.5, but the previous fix doesn't seem to work: https://github.com/Microsoft/TypeScript/issues/4300
---------------- Update 9/10/2015
Here's one sample 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"
]
}
Here's another tsconfig.json
{
"compilerOptions": {
"target": "es5",
"out": "/wwwroot/scripts/appBundle.js",
"sourceMap": true,
"removeComments": true,
"sourceRoot": "/"
}
}
I have created tsconfig.json files for TypeScript + Cordova projects and they work correctly.
