rclnodejs
Version:
ROS2.0 JavaScript client with Node.js
20 lines (19 loc) • 476 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es2020",
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
/* next line commented out because we need unused vars for type tests */
// "noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"lib": ["es2020"]
},
"include": [
"types/**/*"
]
}