Typescript compile error: index.ts(1,5): error TS1005: ';' expected -


i created 'index.ts' file , added next code inside:

let x:string = "hello world";  console.log(x); 

i try compile console command through folder /c/program files (x86)/microsoft sdks/typescript/2.3

tsc 'c:\users\ukhadakouski\desktop\lesson1\index.ts'

does know how can solve ?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -