refactor: migrate to tsup for builds and update tsconfigs fix: update error handling and validation in payment service chore: update package scripts and dependencies docs: update README and env examples
17 lines
427 B
JSON
17 lines
427 B
JSON
{
|
|
"extends": "@repo/typescript-config/library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"allowJs": false,
|
|
"noImplicitAny": false,
|
|
"strict": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"exactOptionalPropertyTypes": false
|
|
},
|
|
"include": ["src/**/*", "tsup.config.ts"],
|
|
"exclude": ["node_modules", "dist", "generated/**/*"]
|
|
}
|