added LinkedIn Support

This commit is contained in:
specCon18 2024-04-28 05:08:55 -04:00
commit 3d1ecd4043
9 changed files with 970 additions and 0 deletions

17
tsconfig.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"outDir": "./dist",
"baseUrl": "./",
"declaration": true
},
"include": [
"src/**/*"
]
}