Skip to content

TypeScript

Mathieu Lavigne edited this page Apr 28, 2025 · 3 revisions

Import

import * as object from 'object.json'; // Importe le JSON mais ajoute également une propriété "default" avec tout le JSON répété
import      object from 'object.json'; // Importe le JSON sans la propriété "default", mais nécessite "allowSyntheticDefaultImports" ou TypeScript@2.7

Voir aussi

Clone this wiki locally