{
"compilerOptions": {
"module": "CommonJS", // Allow the "import assignment" syntax
"target": "es2017", // Allow calling APIs such as "Object.entries"
"strict": true,
"resolveJsonModule": true,
"lib": [
// Omit "dom" to test what happens with the "WebAssembly" type, which is defined in "dom"
"ES5",
],
},
"include": [
"shared/types.ts",
],
}