Angular CLI在AngularJS全局脚本中转换templateUrl

时间:2018-12-17 14:43:48

标签: angularjs angular angular-cli angular-templatecache

我的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")

如何关闭脚本转换?

0 个答案:

没有答案