@codefast/typescript-config 0.3.7 → 0.3.8-canary.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @codefast/typescript-config
2
2
 
3
+ ## 0.3.8-canary.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a5d483b`](https://github.com/codefastlabs/codefast/commit/a5d483b6232088b6d74e6146e0d1510843241ad0) Thanks [@thevuong](https://github.com/thevuong)! - refactor(jest-setup): extract custom matcher declarations to dedicated file
8
+
9
+ - [`9de2f17`](https://github.com/codefastlabs/codefast/commit/9de2f173fcac4ffe2dc919b98029321468a25b4b) Thanks [@thevuong](https://github.com/thevuong)! - feat(ui): update styles version and dependencies for animations and typography
10
+
11
+ - [`1163fa8`](https://github.com/codefastlabs/codefast/commit/1163fa802d29abb68a53eb403295ef1a27cdc7d9) Thanks [@thevuong](https://github.com/thevuong)! - feat(eslint-config): add support for multiple configuration presets in exports
12
+
13
+ ## 0.3.8-canary.0
14
+
15
+ ### Patch Changes
16
+
17
+ - [`30ae5af`](https://github.com/codefastlabs/codefast/commit/30ae5af9b720a42f1debb2bb595b778bd64a43a5) Thanks [@thevuong](https://github.com/thevuong)! - feat(image-loader): add secure URL matching utilities and integrate with loaders
18
+
19
+ - [`c4404a3`](https://github.com/codefastlabs/codefast/commit/c4404a33ea694eacb0469772cdc834809d13aabc) Thanks [@thevuong](https://github.com/thevuong)! - refactor(eslint-config): simplify `ignores` patterns in `next-app` preset
20
+
21
+ - [`1ff5e63`](https://github.com/codefastlabs/codefast/commit/1ff5e63747205c248d326ba4b38a3b1caff91335) Thanks [@thevuong](https://github.com/thevuong)! - refactor(typescript-config): update TypeScript configurations for consistency and maintainability
22
+
3
23
  ## 0.3.7
4
24
 
5
25
  ### Patch Changes
package/base.json CHANGED
@@ -1,26 +1,17 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
- "declaration": true,
4
+ "allowJs": true,
6
5
  "esModuleInterop": true,
7
- "forceConsistentCasingInFileNames": true,
8
6
  "isolatedModules": true,
9
7
  "lib": ["DOM", "DOM.Iterable", "ESNext"],
10
8
  "module": "ESNext",
11
- "moduleDetection": "force",
12
- "moduleResolution": "node",
13
- "noEmitOnError": true,
14
- "noFallthroughCasesInSwitch": true,
15
- "noImplicitOverride": true,
16
- "noImplicitReturns": true,
17
- "noUnusedLocals": true,
18
- "noUnusedParameters": true,
9
+ "moduleResolution": "bundler",
10
+ "noEmit": true,
19
11
  "resolveJsonModule": true,
20
12
  "skipLibCheck": true,
21
13
  "strict": true,
22
- "target": "ESNext",
23
- "useDefineForClassFields": true
14
+ "target": "ESNext"
24
15
  },
25
16
  "display": "Base configuration for monorepo packages"
26
17
  }
package/library.json CHANGED
@@ -1,10 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
- "lib": ["ESNext"],
6
- "sourceMap": true,
7
- "stripInternal": true
4
+ "lib": ["ESNext"]
8
5
  },
9
6
  "display": "Library development configuration",
10
7
  "extends": "./base.json"
package/next.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "allowJs": true,
5
4
  "incremental": true,
6
5
  "jsx": "preserve",
7
- "moduleResolution": "bundler",
8
- "noEmit": true,
9
6
  "plugins": [
10
7
  {
11
8
  "name": "next"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codefast/typescript-config",
3
- "version": "0.3.7",
3
+ "version": "0.3.8-canary.1",
4
4
  "description": "Shared TypeScript configuration for the monorepo",
5
5
  "keywords": [
6
6
  "typescript",
package/react.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "jsx": "react-jsx",
5
- "jsxImportSource": "react"
4
+ "jsx": "react-jsx"
6
5
  },
7
6
  "display": "React component and application configuration",
8
7
  "extends": "./base.json"