mirror of
https://github.com/lobehub/sd-webui-lobe-theme.git
synced 2026-01-09 06:23:44 +08:00
28 lines
661 B
JSON
28 lines
661 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"noEmit": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"strict": true
|
|
},
|
|
"exclude": ["javascript"],
|
|
|
|
"include": ["src", "typings", "**/*.ts", "**/*.d.ts", "**/*.tsx", "vite.config.ts"]
|
|
}
|