打字稿构建使用常见的无法找到要求

TypeScript build using common unable to find require

我一直在开发一个 angular 2 应用程序,我从 angular2 quickstart 应用程序下载了它。当我 运行 构建应用程序时,它显示 require is not defined.

Uncaught ReferenceError: require is not defined

下面是我如何包含的代码system.js

//index.html
<!DOCTYPE html>
<html>
 <head>
   <title>Angular QuickStart</title>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <link rel="stylesheet" href="app/styles/main.css">

   <!-- Polyfill(s) for older browsers -->
   <script src="node_modules/core-js/client/shim.min.js"></script>
   <script src="node_modules/zone.js/dist/zone.js"></script>
   <script src="node_modules/reflect-metadata/Reflect.js"></script>
   <script src="node_modules/systemjs/dist/system.src.js"></script>

   <script src="systemjs.config.js"></script>
   <script>
     System.import('app').catch(function(err){ console.error(err); });
   </script>

当您尝试使用 commonjs 构建并尝试使用 systemjs 加载程序加载时,会发生这种情况。在你 tsconfig.json 中将模块更改为系统。

下面是我的tsconfig.json。

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": true,
    "suppressImplicitAnyIndexErrors": true

  }
}