Files
wehub-resource-sync 3a28426bf4
Lint and Format Check / lint-and-format (push) Failing after 0s
Check Migrations / Check for duplicate migration numbers (push) Failing after 1s
CI Pre-merge Check / CI Pre-merge Check (push) Failing after 2m17s
chore: import upstream snapshot with attribution
2026-07-13 12:23:40 +08:00

38 lines
1.4 KiB
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@insforge/dashboard": ["../packages/dashboard/src"],
"#app/*": ["../packages/dashboard/src/app/*"],
"#assets/*": ["../packages/dashboard/src/assets/*"],
"#components": ["../packages/dashboard/src/components/index.ts"],
"#components/*": ["../packages/dashboard/src/components/*"],
"#features/*": ["../packages/dashboard/src/features/*"],
"#layout/*": ["../packages/dashboard/src/layout/*"],
"#lib/*": ["../packages/dashboard/src/lib/*"],
"#navigation/*": ["../packages/dashboard/src/navigation/*"],
"#router/*": ["../packages/dashboard/src/router/*"],
"#types": ["../packages/dashboard/src/types/index.ts"],
"#types/*": ["../packages/dashboard/src/types/*"],
"@insforge/shared-schemas": ["../packages/shared-schemas/src"],
"@insforge/ui": ["../packages/ui/src"]
}
},
"include": ["src", "../packages/dashboard"],
"references": [{ "path": "./tsconfig.node.json" }]
}