“TS Impor JSON” Kode Jawaban

Tidak dapat menemukan modul ./data.json. Pertimbangkan untuk menggunakan --solveJsonModule untuk mengimpor modul dengan ekstensi .json

add to tsconfig.json

{
	...
    "resolveJsonModule": true
  }
}
DevPedrada

Impor JSON TypeScript

// add this in your tsconfig.json file:
{
  "compilerOptions": {
    "resolveJsonModule": true
  }
}
Frantic Flatworm

TS Impor JSON

{
  ...,
  "compilerOptions": {
    ...
    "moduleResolution": "node", // add this line
    "resolveJsonModule": true	// add this line
  },
  "include": ["**/*.ts", "./**/*.json"] // add json path
}
Clever Cheetah

--resolveJsonModule

declare module "*.json" {
  const value: any;
  export default value;
}
Salo Hopeless

Jawaban yang mirip dengan “TS Impor JSON”

Pertanyaan yang mirip dengan “TS Impor JSON”

Lebih banyak jawaban terkait untuk “TS Impor JSON” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya