SystemJS 可以指定从导入的文件中呈现什么样的内容:
- CSS
System.import('my/file.css!')
- 图片
System.import('some/image.png!image')
- JSON
System.import('some/data.json!').then(function(json){})
- 文本
System.import('some/text.txt!text').then(function(text) {})
(来源)
使用 SystemJS,从附加类型的文件中导入,会在 Webstorm 中出现错误。
所以当我这样做时:
import template from './404.template.html!text';
这意味着我需要纯文本格式的 html 文件,Webstorm 显示错误消息:
无法解析文件 '404.template.html!text'
在我的所有项目文件结构树中显示红色下划线。
我怎样才能让 Webstorm 只解决之前的部分!
?