我们使用aurelia开发了一个应用程序。我们使用的是typescript 2.1。我们为ES5配置了编译器目标选项。我们正在生成ES5兼容的源代码。所以我们不需要babel转换过程。那么我们如何直接在systemjs中加载es5模块
tsconfig.json
{
"compilerOptions":
{
"module": "system",
"experimentalDecorators": true,
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"lib": [
"es2015",
"es5",
"es6",
"dom"
]
}
}