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
324 B
JSON
17 lines
324 B
JSON
{
|
|
"extends": "@repo/typescript-config/library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"declaration": false,
|
|
"declarationMap": false
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.*",
|
|
"**/*.spec.*"
|
|
]
|
|
} |