mirror of
https://github.com/quartz-community/demo-vault.git
synced 2026-07-22 03:00:28 +00:00
28 lines
756 B
JSON
28 lines
756 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"include": ["quartz/**/*.ts", "quartz/**/*.tsx", "*.ts", "*.tsx", "./package.json"],
|
|
"exclude": [
|
|
"build/**/*.d.ts",
|
|
".quartz/**/src/**",
|
|
".quartz/**/test/**",
|
|
"node_modules/**",
|
|
"quartz/cli/tui/**"
|
|
]
|
|
}
|