sd-webui-lobe-theme/tsconfig.json
canisminor1990 9decee298a 🐛 fix: I18n load
2023-07-16 21:37:21 +08:00

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"]
}