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
28 lines
739 B
JSON
28 lines
739 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"lib": ["es2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"preserveWatchOutput": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"target": "ES2022",
|
|
"noImplicitReturns": false,
|
|
"noImplicitAny": false,
|
|
"noErrorTruncation": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|