feat: initialize FewLineSDK project with TypeScript setup

- Add package.json with dependencies and scripts for building and linting
- Create initial FewLineSDK class in src/index.ts
- Set up TypeScript configuration in tsconfig.json
This commit is contained in:
lborv
2025-10-27 19:07:06 +02:00
parent b974802464
commit a84283e192
5 changed files with 5316 additions and 0 deletions

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"declaration": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}