“TS Import Json” Kod odpowiedzi

Nie można znaleźć modułu „./data.json”. Rozważ użycie „--rezolwysonmodule” do importowania modułu z rozszerzeniem „.JSON”

add to tsconfig.json

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

Importuj JSON TypeScript

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

TS Import 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

Odpowiedzi podobne do “TS Import Json”

Pytania podobne do “TS Import Json”

Więcej pokrewnych odpowiedzi na “TS Import Json” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu