我正在尝试编译此typescript文件:
import http = module("http"); import express = module("express");
有了这些参数:
C:/nodejs/tsc.cmd --sourcemap cheese.ts --module commonjs C:/User/Node/ExpressProject/cheese.ts(5,21): error TS1005: ';' expected. C:/User/Node/ExpressProject/cheese.ts(6,24): error TS1005: ';' expected.
module "http" {} module "express" {} import http = module("http"); import express = module("express");
使用Typescript版本0.9.1
解决方法
0.9.1中的语法现在是import mod = require(‘modname’);