mirror of
https://github.com/quartz-community/article-title.git
synced 2026-07-22 02:50:30 +00:00
27 lines
716 B
JSON
27 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", "types", "tsup.config.ts", "vitest.config.ts"],
|
||
|
|
"exclude": ["dist", "node_modules"]
|
||
|
|
}
|