@international-iot-association/tsconfig 1.0.0-rc.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/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # @international-iot-association/tsconfig
2
+
3
+ 共用 `tsconfig` 基底片段(`base.json`/`react.json`/`node.json`),纯 JSON,无构建产物。
4
+ 属于**组 B · 独立版本组**(不跟随 `agentApi` major,各自 semver)。
package/base.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "declarationMap": true,
6
+ "esModuleInterop": true,
7
+ "incremental": false,
8
+ "isolatedModules": true,
9
+ "lib": ["es2022"],
10
+ "module": "ESNext",
11
+ "moduleResolution": "Bundler",
12
+ "noUncheckedIndexedAccess": true,
13
+ "resolveJsonModule": true,
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "target": "ES2022"
17
+ }
18
+ }
package/node.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "lib": ["es2022"],
6
+ "types": ["node"]
7
+ }
8
+ }
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@international-iot-association/tsconfig",
3
+ "version": "1.0.0-rc.1",
4
+ "license": "MIT",
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/International-IoT-Association/MES.git",
12
+ "directory": "electron-station-plugins/packages/typescript-config"
13
+ },
14
+ "files": [
15
+ "base.json",
16
+ "react.json",
17
+ "node.json"
18
+ ],
19
+ "x-internal-version": "1.0.0",
20
+ "x-source-revision": "410a2f3b85ef03b678f04f22ea0a47718f5ddae1"
21
+ }
package/react.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "lib": ["es2022", "DOM", "DOM.Iterable"],
6
+ "jsx": "react-jsx"
7
+ }
8
+ }