Closed
Description
The project is created from the default Typescript Web Application template, I've created tsconfig.json
; it wans't included in the default project template. I am trying to get this working.
This is my tsconfig.json
file:
{
"compilerOptions": {
"target": "ES5",
"module": "amd",
"sourceMap": true
},
"exclude": [
"node_modules",
".vscode"
]
}