mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-22 05:55:42 -05:00
29 lines
756 B
JSON
29 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/**"
|
|
]
|
|
}
|