@tamagui/types 1.84.2 → 1.85.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types.d.ts +10 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -89,6 +89,16 @@ export interface TamaguiOptions {
|
|
|
89
89
|
*/
|
|
90
90
|
disableExtractVariables?: boolean | 'theme'
|
|
91
91
|
|
|
92
|
+
/**
|
|
93
|
+
* (Advanced) Disables the initial build and attempts to load from the .tamagui directory
|
|
94
|
+
*/
|
|
95
|
+
disableInitialBuild?: boolean
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Disables running lightningcss before emitting outputCSS
|
|
99
|
+
*/
|
|
100
|
+
disableMinifyCSS?: boolean
|
|
101
|
+
|
|
92
102
|
evaluateVars?: boolean
|
|
93
103
|
cssPath?: string
|
|
94
104
|
cssData?: any
|