我正在使用<LinearGradient colors={['#4c669f', '#3b5998', '#192f6a']}>
<Text>
Your Text Here
</Text>
</LinearGradient>
将.type文件中的打字稿导入。
文件运行正常,但是VS Code告诉我import * as ts from "typescript";
。
有什么办法可以解决这个问题?
编辑:文件可以编译并成功运行
答案 0 :(得分:1)
您要在VS Code的settings.json中更改这两个设置:
"typescript.validate.enable": false,
"javascript.validate.enable": false,