- Add new page for managing Stripe reports with functionality to generate and view reports. - Create API router for handling Stripe report operations including listing, setting up, and generating reports. - Introduce caching service for managing cache invalidation related to reports. - Update Typst templates for formatting financial reports in EUR. - Enhance utility functions for price formatting and error handling. - Implement a script to check for unused tRPC procedures in the codebase.
65 lines
1.2 KiB
JSON
65 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
/* Path Aliases */
|
|
|
|
"baseUrl": ".",
|
|
"checkJs": true,
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
/* Bundled projects */
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
/* Strictness */
|
|
"strict": true,
|
|
"target": "esnext"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"dist",
|
|
"headers",
|
|
"kyselyRules",
|
|
".kanelrc.js"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"global.d.ts",
|
|
"next-env.d.ts",
|
|
"next.config.ts",
|
|
"postcss.config.cjs",
|
|
"reset.d.ts",
|
|
"TypeHelpers.type.ts",
|
|
"public",
|
|
"emails",
|
|
".next/types/**/*.ts",
|
|
"tests",
|
|
"flow-gen.ts",
|
|
"check-unused-trpc.ts"
|
|
],
|
|
"ts-node": {
|
|
// these options are overrides used only by ts-node
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|