Files
wehub-resource-sync 311a3666c4
Unit tests / build (18) (push) Waiting to run
Unit tests / build (20) (push) Waiting to run
Unit tests / build (22) (push) Waiting to run
Build documentation / build (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:44:39 +08:00

27 lines
671 B
JSON

{
// Only include files in the src directory
"include": ["./packages/**/src/**/*"],
"compilerOptions": {
// Tells the compiler to check JS files
"checkJs": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["ES2020", "DOM"],
"outDir": "types",
"strict": false,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"noEmit": false,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"typeAcquisition": {
"include": ["jest"]
}
}