I just put some incidentally found React tsconfig.base.json and it “worked”.
This is the content I used:
{
“compileOnSave”:false,
“compilerOptions”:{
“declaration”:true,
“composite”:true,
“incremental”:true,
“strictNullChecks”:false,
“sourceMap”:true,
“inlineSources”:true,
“skipLibCheck”:true,
“jsx”:“react”,
“target”:“ES6”,
“moduleResolution”:“Node”,
“module”:“es6”,
“strict”:false,
“lib”:[
“DOM”,
“ES6”
]
}
}
I just followed what is written in the “doc/HACKING.md” of anvil runtime source.
Except, another bug - that I filed on Github, it is a Clojure error - was preventing me from seeing that my previous tsconfig.base.json actually worked too. Compiling the client however didn’t show any but I will recompile it with this new json settings.