2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-12 22:00:11 +02:00
socketio-jwt/tsconfig.json
Divlo 03e8d51f9a
fix: bump jsonwebtoken to v9.0.0
fixes #342

It introduces several security fixes to follow best practices.
2023-01-10 20:57:23 +01:00

14 lines
290 B
JSON

{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "node",
"outDir": "./build",
"rootDir": "./src",
"emitDeclarationOnly": true,
"declaration": true
}
}