Всем привет. Использую vue с ts. Получаю ошибку ниже:
error TS6504: File '<путь до файkа>/src/components/PriceTenge.vue.jsx' is a JavaScript file. Did you mean to enable the 'allowJs' option?
The file is in the program because:
Matched by include pattern 'src/**/*' in '<путь до файkа>/tsconfig.json'
tsconfig.json:3:27
3 "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
~~~~~~~~~~
File is matched by include pattern specified here.
Дело в том, что у меня нет jsx файлов, только .vue файлы. Есть файл <путь до файkа>/src/components/PriceTenge.vue существует.
Пытался в файле tsconfig.json добавить "allowJs": true, но не помогает.