{
"compilerOptions": {
"checkJs": true,
"target": "ESNext",
"module": "NodeNext"
},
"include": ["."]
}
I have a node javascript project for Node 20 and I only want to use TypeScript for type-checking with above jsconfig.json
Do I need to specify moduleResolution option explicitly or does TypeScript will infer the module resolution system from target and module options in jsconfig.json?