mirror of
https://github.com/uni-stack/uniwind.git
synced 2026-09-14 20:07:03 +08:00
dcdf730f09
* feat(web): add vite support * chore: format * fix: add missing css functions * chore: remove postcss * chore: make export default * fix: make sure the plugin work under the workspace * fix: exclude react-native in optimizeDeps to resolve correctly * chore: add vite example * chore: import uniwind in app.css * chore: update dependencies * chore: vite example add min height * chore: simplify dirname for esm * fix: support custom-variants * chore: normalizePath for potential windows issue * fix: prevent listeners from resetting in dev build * fix: reinit themes * chore: minor corrections --------- Co-authored-by: Hubert Bieszczad <brentlokk@gmail.com>
27 lines
735 B
JSON
27 lines
735 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|