“Импорт json typescript” Ответ

Импорт 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

Как импортировать строку JSON из файла в TypeScript

import {default as a} from "a.json";
a.primaryMain
Charming Cardinal

Ответы похожие на “Импорт json typescript”

Вопросы похожие на “Импорт json typescript”

Больше похожих ответов на “Импорт json typescript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования