@speckle/tailwind-theme 2.17.3 → 2.17.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speckle/tailwind-theme",
3
3
  "description": "Speckle tailwind theme used in frontend 2 and other apps",
4
- "version": "2.17.3",
4
+ "version": "2.17.4",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "rimraf ./dist ./dist-cjs && tsc -p . && tsc -p ./tsconfig.cjs.json && tsconfig-to-dual-package",
package/tsconfig.cjs.json CHANGED
@@ -3,6 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "module": "CommonJS",
5
5
  "moduleResolution": "node",
6
- "outDir": "dist-cjs"
6
+ "outDir": "dist-cjs",
7
+ "verbatimModuleSyntax": false
7
8
  }
8
9
  }
package/tsconfig.json CHANGED
@@ -80,6 +80,7 @@
80
80
  "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
81
81
  // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
82
82
  "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
83
+ "verbatimModuleSyntax": true,
83
84
 
84
85
  /* Type Checking */
85
86
  "strict": true /* Enable all strict type-checking options. */,