@jterrazz/typescript 7.2.0 → 7.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,6 +10,9 @@ export default defineConfig({
10
10
  bracketSpacing: true,
11
11
  endOfLine: 'lf',
12
12
  /* `typescript docs` writes the byte-for-byte typedoc tree to docs/reference/ —
13
- * formatting it would fight the Docs (sync) pass, so skip it by default. */
14
- ignorePatterns: ['docs/reference'],
13
+ * formatting it would fight the Docs (sync) pass, so skip it by default.
14
+ * Asset trees and build caches are not source either — and a content tree
15
+ * can hold signed bytes (jterrazz-web's attestations), where one formatter
16
+ * pass invalidates every proof. */
17
+ ignorePatterns: ['docs/reference', 'dist/**', 'assets/**', 'public/**', '.next/**', '.expo/**'],
15
18
  });