mirror of
https://github.com/xtr-dev/payload-billing.git
synced 2025-12-08 00:33:23 +00:00
27 lines
509 B
JSON
27 lines
509 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"src/__tests__/**/*",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
"dev/**/*",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |