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

24 lines
640 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022"],
"outDir": "../dist",
"rootDir": "..",
"paths": {
"@/*": ["./src/*"],
"@insforge/shared-schemas": ["../packages/shared-schemas/src/index.ts"]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "vitest"]
},
"include": ["src/**/*", "../packages/shared-schemas/src/**/*"],
"exclude": ["node_modules", "dist"]
}