Slide 55
Slide 55 text
Make your JS code work with TS (Option A)
4 replace the transpiler with TypeScript
4 tweak tsconfig.json to adapt to your existing code
{
"compilerOptions": {
"target": "ES5",
"allowJS": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
}
}