View on GitHub

notes

A collection of my TIL notes and commonplace book entries.

Import JSON files

Add the following to the tsconfig.json file:

{
	"compilerOptions": {
		"resolveJsonModule": true,
		"esModuleInterop": true
	}
}

Then import like this:

import ongoingCourses from './data/ongoing.json';