Files
wehub-resource-sync b7f52be4c9
Copilot Setup Steps / copilot-setup-steps (push) Waiting to run
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:48:47 +08:00

40 lines
1.1 KiB
JSON

{
"compilerOptions": {
// THIS MUST BE AT ROOT, if you set baseurl in sub-package it breaks intellisense jump to
"composite": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"importHelpers": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"downlevelIteration": true,
"strict": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "system",
"moduleResolution": "node",
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveConstEnums": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
"types": ["node", "react"],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"paths": {
"src/*": ["./src/*"]
}
},
"exclude": ["**/test", "**/dist", "**/__tests__"],
"include": ["src/**/*"],
"types": ["@testing-library/jest-dom", "node"]
}