mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
Related: - https://github.com/microsoft/TypeScript/issues/46770#issuecomment-966612103 - https://github.com/socketio/socket.io-client/issues/1589
13 lines
280 B
JSON
13 lines
280 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build/cjs/",
|
|
"target": "es2018", // Node.js 10 (https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping)
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"./lib/**/*"
|
|
]
|
|
}
|