Files
socket.io/tsconfig.json
Damien Arrachequesne 7245b803e0 chore: migrate to TypeScript
This change introduces an ESM build which will allow tree shaking. A
CJS build is also provided for backward compatibility.
2021-10-04 23:12:09 +02:00

13 lines
281 B
JSON

{
"compilerOptions": {
"outDir": "build/cjs/",
"target": "es2018", // Node.js 10 (https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping)
"module": "commonjs",
"declaration": false,
"esModuleInterop": true
},
"include": [
"./lib/**/*"
]
}