mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/lib/routing": ["./_types/lib/routing"],
|
|
"@/lib/level-types": ["./_types/lib/level-types"],
|
|
"@/lib/types/package-admin-types": ["./_types/lib/types/package-admin-types"],
|
|
"@/lib/validation/user-validation": ["./_types/lib/validation/user-validation"],
|
|
"@/app/[tenant]/[package]/tenant-context": ["./_types/app/tenant-context"],
|
|
"@/data/github-build-status.json": ["./_types/data/github-build-status.json"],
|
|
"@/data/favicon-designer.json": ["./_types/data/favicon-designer.json"],
|
|
"@/hooks/use-kv": ["./_types/hooks/use-kv"]
|
|
}
|
|
},
|
|
"include": [
|
|
"use*.ts",
|
|
"use*.tsx",
|
|
"index.ts",
|
|
"_types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"hooks.ts",
|
|
"I18nNavigation.ts",
|
|
"ToastContext.tsx",
|
|
"SnippetManagerRedux.test.tsx",
|
|
"SnippetToolbar.test.tsx",
|
|
"FormControl.tsx",
|
|
"RadioGroup.tsx",
|
|
"ToggleButton.tsx"
|
|
]
|
|
}
|