Slide 22
Slide 22 text
tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJS": true,
"checkJS": false,
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
...
}
}
01.
02.
03.
04.
05.
06.
07.
08.
09.
10.
11.
12. @philnash