This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
socketio-jwt/tsconfig.json

14 lines
296 B
JSON
Raw Normal View History

{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./build",
"rootDir": "./src",
2022-02-19 10:36:34 +01:00
"emitDeclarationOnly": true,
"declaration": true
}
}