You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@joselee I am guessing it is something to do with the my tsconfig.json setting. The same tsconfig works fine if I install the typings using "typings install".
Uh oh!
There was an error while loading. Please reload this page.
TypeScript Version: 2.0.3
Code
tsconfig.json
{
"compilerOptions": {
"target": "es2015",
"jsx": "react",
"module" :"es2015",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"sourceMap": true,
"typeRoots": [
"node_modules/@types"
]
},
"compileOnSave": true,
"exclude": [
"node_modules"
]
}
tsc could not locate the typings from node_modules/@types folder.
It works if I install typings using "typings install"
Expected behavior:
tsc should compile without any errors
Actual behavior:
The text was updated successfully, but these errors were encountered: