NodeJS typescript 错误TS 1005:';'应为

ghhaqwfi  于 2023-05-28  发布在  Node.js
关注(0)|答案(3)|浏览(436)

我正在尝试编译这个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

70gysomp

70gysomp1#

0.9.1中的语法现在是import mod = require('modname');

wmvff8tz

wmvff8tz2#

Typescript编译器(https://www.npmjs.org/package/typescript-compiler)命令。
我使用--allowimportmodule

kupeojn6

kupeojn63#

我在Visual Studio Professional 2019中的.Net Core应用程序中遇到了这些错误,我获得了16.4.4更新并应用了该更新,这反过来又要求重新启动计算机,当然关闭然后重新打开解决方案。在此之后,各种TS错误消失。

相关问题