@interfere/typescript-config 1.0.2 → 1.0.3-alpha.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 ADDED
@@ -0,0 +1,19 @@
1
+ # @interfere/typescript-config
2
+
3
+ ## 1.0.3-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#741](https://github.com/interfere-inc/interfere/pull/741) [`8c4092c`](https://github.com/interfere-inc/interfere/commit/8c4092c51d1ea91c5749d984fddcf484da46d543) Thanks [@skve](https://github.com/skve)! - Bug fixes and optimizations
8
+
9
+ ## 1.0.3-alpha.0
10
+
11
+ ### Patch Changes
12
+
13
+ - [`477492c`](https://github.com/interfere-inc/repo/commit/477492c61dc69df8e270871b57483bd2bfcb7100) Thanks [@skve](https://github.com/skve)! - Progress
14
+
15
+ ## 1.0.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#117](https://github.com/interfere-inc/repo/pull/117) [`3681077`](https://github.com/interfere-inc/repo/commit/36810771d3c82abc0bf91c1c61de30d558a52a11) Thanks [@skve](https://github.com/skve)! - session summary, rage, releases
package/base.json CHANGED
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
+ "customConditions": ["@source"],
4
5
  "declaration": true,
5
6
  "declarationMap": true,
6
7
  "esModuleInterop": true,
7
- "incremental": false,
8
8
  "isolatedModules": true,
9
9
  "lib": ["es2022", "DOM", "DOM.Iterable"],
10
- "module": "NodeNext",
10
+ "module": "ESNext",
11
11
  "moduleDetection": "force",
12
- "moduleResolution": "NodeNext",
12
+ "moduleResolution": "Bundler",
13
13
  "noUncheckedIndexedAccess": true,
14
+ "noUnusedLocals": true,
15
+ "noUnusedParameters": true,
16
+ "noFallthroughCasesInSwitch": true,
14
17
  "verbatimModuleSyntax": true,
15
18
  "noImplicitOverride": true,
16
19
  "resolveJsonModule": true,
package/nextjs.json CHANGED
@@ -3,8 +3,6 @@
3
3
  "extends": "./base.json",
4
4
  "compilerOptions": {
5
5
  "plugins": [{ "name": "next" }],
6
- "module": "ESNext",
7
- "moduleResolution": "Bundler",
8
6
  "allowJs": true,
9
7
  "jsx": "preserve",
10
8
  "noEmit": true
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@interfere/typescript-config",
3
- "version": "1.0.2",
3
+ "version": "1.0.3-alpha.1",
4
+ "type": "module",
4
5
  "license": "MIT",
5
- "files": [
6
- "base.json",
7
- "nextjs.json",
8
- "react-library.json"
9
- ],
10
- "dependencies": {
11
- "@total-typescript/ts-reset": "^0.6.1"
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/interfere-inc/interfere.git",
9
+ "directory": "src/packages/public/typescript-config"
10
+ },
11
+ "exports": {
12
+ "./*.json": "./*.json"
12
13
  },
13
14
  "publishConfig": {
14
15
  "access": "public"
15
16
  }
16
- }
17
+ }
package/turbo.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "tags": ["public"],
3
+ "extends": ["//"],
4
+ "tasks": {
5
+ "build": {
6
+ "dependsOn": []
7
+ }
8
+ }
9
+ }
File without changes