mirror of
https://github.com/quartz-community/graph.git
synced 2026-07-22 02:50:25 +00:00
- Update types/globals.d.ts with centralized type declarations - Use fetchData global instead of hardcoded /static/contentIndex.json - Revert @quartz-community/types from file:../types to github:quartz-community/types - Add .prettierignore, update .eslintrc.json with triple-slash-reference override - Remove duplicate scripts.d.ts/styles.d.ts
26 lines
716 B
JSON
26 lines
716 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022", "DOM"],
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vitest/globals", "node"],
|
|
"verbatimModuleSyntax": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"include": ["src", "test", "tsup.config.ts", "vitest.config.ts", "types"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|