在使用新的 TypeScript 功能(即所谓的ES Dynamic Imports)时,我无法在服务器端使用ts-node
.
使用 webpack 模块加载器以自己的方式转换代码并在浏览器中运行生成的文件时,似乎不会发生错误。
我遇到的错误:
case 0: return [4 /*yield*/, import("./component/main")];
^^^^^^
SyntaxError: Unexpected token import
通常 TypeScript 会将import
表达式转换为类似的内容:Promise.resolve(require("./component/main"))
,但我在那里看不到它。
如何解决?它有什么共同点ts-node
吗?或者有一个“polyfill” node.js
?
我的tsconfig.json
文件:
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"allowJs": false,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSourceMap": false,
"inlineSources": false,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7"
],
"listFiles": false,
"module": "commonjs",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"preserveConstEnums": false,
"pretty": false,
"removeComments": false,
"strict": true,
"target": "es5"
}
}
编码:
import * as m from "mithril";
import LayoutComponent from "./component/layout";
const render = (
layout: m.ComponentTypes<any, any>,
) => ({ tag, attrs }: m.Vnode<any, any>) => m(layout, attrs, m(tag as any, attrs));
export default {
"/:path...": {
onmatch: async (args, path) => (await import("./component/main")).default,
render: render(LayoutComponent),
},
} as m.RouteDefs;