mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 07:28:06 -05:00
This upgrades prettier to 2.2.0 to gain support for TypeScript's new type-only-imports feature.
23 lines
439 B
JSON
23 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitReturns": true,
|
|
"importsNotUsedAsValues": "error",
|
|
},
|
|
"include": [
|
|
"./lib/**/*"
|
|
]
|
|
}
|