我的Angular混合应用程序具有使用旧式templateUrl
的AngularJS依赖项。使用scripts
配置中的angular.json
选项可以包含这些依赖项:
"scripts": [
"./node_modules/angular/angular.js",
"./libs/foo/dist/foo.js"
]
我不是从我的TypeScript代码中import './libs/foo/dist/foo'
。
当我运行ng build
时,我希望Angular CLI能够简单地执行依赖关系代码,但是templateUrl: "path"
的定义会变成template: require("path")
。
如何关闭脚本转换?