我正尝试使用以下命令从.tsx中的.json文件导入数据:
import data from "data/mockup.json"
但是我收到了错误
找不到模块' data / mockup.json'
我的webpack配置如下所示:
const babelLoader = {
loader: 'babel-loader',
options: {
cacheDirectory: true,
presets: [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
},
"modules": true
}]
]
}
};
module.exports = {
entry: {...},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
alias: {
data: path.resolve(__dirname, 'src/app/data')
}
},
output: {...},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
babelLoader,
{
loader: 'ts-loader'
}
]
},
{
test: /\.js$/,
exclude: /node_modules\/(?!(dom7|swiper)\/).*/,
use: [
babelLoader
]
}
]
},
...
}
enter code here
我认为.json默认是在webpack4中构建的,所以我的webpack配置可能有问题吗?
使用的版本: webpack:v4.4.1 打字稿:2.7.2
答案 0 :(得分:3)
在d.ts文件中声明模块
declare module "*.json"
在编译器选项中的tsconfig.json中添加一个字段
"typeRoots": [ "node_modules/@types", "./typings.d.ts" ],
现在导入文件(.tsx)
import * as data from "./dat/data.json";
Webpack@4.4.1和Typescript@2.7.2
希望这有帮助!!!
参考1:https://www.typescriptlang.org/docs/handbook/react-&-webpack.html
参考2:https://github.com/Microsoft/TypeScript-React-Starter/issues/12
答案 1 :(得分:1)
过时的,不加评论:
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
文件tsconfig.json
中的起到了作用。
我发现了提示here。
答案 2 :(得分:0)
尽管答案对于将JSON文件作为模块加载很有帮助,但它们在很多方面都受到限制
首先:默认情况下,打字稿可以加载JSON文件,您只需将其添加到以下行的tsconfig.json
中:
{
...
"resolveJsonModule": true,
...
}
second:建议的解决方案将隐式启用类型检查和自动完成
P.S。所附图片来自讨论同一主题的教程,请单击here以查看更多信息