Files
ben-to/tsconfig.base.json
2026-07-21 16:50:58 +02:00

51 lines
1.3 KiB
JSON

{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@ben-to/builder/domain": [
"packages/features/builder/src/domain.ts"
],
"@ben-to/builder/*": [
"packages/features/builder/src/*"
],
"@ben-to/recipes/catalog": [
"packages/features/recipes/src/catalog.ts"
],
"@ben-to/recipes/domain": [
"packages/features/recipes/src/domain.ts"
],
"@ben-to/recipes/*": [
"packages/features/recipes/src/*"
],
"@ben-to/i18n/dictionary": [
"packages/shared/i18n/src/dictionary.ts"
],
"@ben-to/i18n/*": [
"packages/shared/i18n/src/*"
],
"@ben-to/testing/iso-date": [
"packages/shared/testing/src/iso-date.ts"
],
"@ben-to/testing/*": [
"packages/shared/testing/src/*"
],
"@ben-to/privacy/cookie-consent": [
"packages/shared/privacy/src/cookie-consent.ts"
]
}
}
}