mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 07:28:06 -05:00
This change introduces an ESM build which will allow tree shaking. A CJS build is also provided for backward compatibility.
13 lines
200 B
JSON
13 lines
200 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build/esm/",
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"./lib/**/*"
|
|
]
|
|
}
|