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
Thanks for such a great project but I've hit a snag. I'm not sure that this is actually a problem with tide though I'm only seeing this problem within the IDE, not at the command line with tsc.
I have a Typescript project that is compiling nicely through tide/tsserver integration. Except for one file where I am making use of Proxy. Tide reports an error in Emacs as Cannot find name "Proxy". [2304].
At the command line I can successfully run the following (build/test.js is generated without errors):
I also checked the tsserver log (I enabled TSS_LOG) and see that the above tsconfig.json is being referenced. The relevant output from that log that's generating an error is:
{"command":"semanticDiagnosticsSync","seq":"403","arguments":{"file":"/.../test.ts"}}
...
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":"403","success":true,"body":[{"start":{"line":1,"offset":18},"end":{"line":1,"offset":23},"text":"Cannot find name 'Proxy'.","code":2304,"category":"error"}]}
I just ran across this issue when I implemented this wmonk/create-react-app-typescript#122 (comment) ugly fix for an issue in create-react-app-typescript. I had added an alias or path @src and the solution seems to have been to rename it simply to src.
Hi!
Thanks for such a great project but I've hit a snag. I'm not sure that this is actually a problem with tide though I'm only seeing this problem within the IDE, not at the command line with
tsc
.I have a Typescript project that is compiling nicely through tide/tsserver integration. Except for one file where I am making use of
Proxy
. Tide reports an error in Emacs asCannot find name "Proxy". [2304]
.At the command line I can successfully run the following (
build/test.js
is generated without errors):However tide reports
Cannot find name "Proxy". [2304]
. Thetsconfig.json
I'm using:I also checked the
tsserver
log (I enabledTSS_LOG
) and see that the abovetsconfig.json
is being referenced. The relevant output from that log that's generating an error is:I understand that this may be a question for https://github.com/Microsoft/TypeScript/ but I thought I'd check here first. :)
The text was updated successfully, but these errors were encountered: