mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-21 21:45:42 -05:00
23 lines
682 B
JSON
23 lines
682 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/**", "node_modules/**"]
|
|
}
|