electron-reactive-event-cli 1.0.16 → 1.0.17
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 +4 -1
- package/Schema.json +0 -46
- package/tsconfig.json +0 -34
- package/tsconfig.json.old +0 -38
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"setup": "./Distribution/Setup.js"
|
|
5
5
|
},
|
|
6
6
|
"name": "electron-reactive-event-cli",
|
|
7
|
-
"version": "1.0.
|
|
7
|
+
"version": "1.0.17",
|
|
8
8
|
"description": "Helper package to integrate electron-reactive-event in your Electron- and React-based app.",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"electron",
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"type": "module",
|
|
29
29
|
"main": "./Distribution/index.js",
|
|
30
30
|
"types": "./Distribution/index.d.ts",
|
|
31
|
+
"files": [
|
|
32
|
+
"./Distribution/**/*"
|
|
33
|
+
],
|
|
31
34
|
"scripts": {
|
|
32
35
|
"build": "tsgo -p tsconfig.json",
|
|
33
36
|
"build-schema": "npx typescript-json-schema ./tsconfig.json FCliConfig --out ./Schema.json"
|
package/Schema.json
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"properties": {
|
|
4
|
-
"files": {
|
|
5
|
-
"description": "The glob(s) of path(s) to modules containing your event declarations.\n\nIf this property is not specified, then the paths given in the\n`include` property of your package's `tsconfig.json` will be used.",
|
|
6
|
-
"items": {
|
|
7
|
-
"type": "string"
|
|
8
|
-
},
|
|
9
|
-
"type": "array"
|
|
10
|
-
},
|
|
11
|
-
"main": {
|
|
12
|
-
"description": "The `name` of the interface that holds your `main` event declarations.",
|
|
13
|
-
"properties": {
|
|
14
|
-
"name": {
|
|
15
|
-
"description": "The name of the interface type.",
|
|
16
|
-
"type": "string"
|
|
17
|
-
},
|
|
18
|
-
"path": {
|
|
19
|
-
"description": "The path of the module that contains the interface type.",
|
|
20
|
-
"type": "string"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"type": "object"
|
|
24
|
-
},
|
|
25
|
-
"outPath": {
|
|
26
|
-
"description": "Where the module containing the `declare module` blocks will be written.",
|
|
27
|
-
"type": "string"
|
|
28
|
-
},
|
|
29
|
-
"renderer": {
|
|
30
|
-
"description": "The `name` of the interface that holds your `renderer` event declarations.",
|
|
31
|
-
"properties": {
|
|
32
|
-
"name": {
|
|
33
|
-
"description": "The name of the interface type.",
|
|
34
|
-
"type": "string"
|
|
35
|
-
},
|
|
36
|
-
"path": {
|
|
37
|
-
"description": "The path of the module that contains the interface type.",
|
|
38
|
-
"type": "string"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"type": "object"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"type": "object"
|
|
45
|
-
}
|
|
46
|
-
|
package/tsconfig.json
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions":
|
|
3
|
-
{
|
|
4
|
-
"rootDir": "./Source",
|
|
5
|
-
"outDir": "./Distribution",
|
|
6
|
-
"module": "nodenext",
|
|
7
|
-
"target": "esnext",
|
|
8
|
-
"lib": [
|
|
9
|
-
"esnext"
|
|
10
|
-
],
|
|
11
|
-
"types": [
|
|
12
|
-
"node"
|
|
13
|
-
],
|
|
14
|
-
"sourceMap": true,
|
|
15
|
-
"declaration": true,
|
|
16
|
-
"declarationMap": true,
|
|
17
|
-
"noUncheckedIndexedAccess": true,
|
|
18
|
-
"exactOptionalPropertyTypes": true,
|
|
19
|
-
"noImplicitReturns": true,
|
|
20
|
-
"noImplicitOverride": true,
|
|
21
|
-
"noUnusedLocals": true,
|
|
22
|
-
"noUnusedParameters": true,
|
|
23
|
-
"noFallthroughCasesInSwitch": true,
|
|
24
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
25
|
-
"strict": true,
|
|
26
|
-
"jsx": "react-jsx",
|
|
27
|
-
"isolatedModules": true,
|
|
28
|
-
"noUncheckedSideEffectImports": true,
|
|
29
|
-
"moduleDetection": "force",
|
|
30
|
-
"skipLibCheck": true
|
|
31
|
-
},
|
|
32
|
-
"include": [ "Source/**/*.ts", "Source/**/*.tsx" ],
|
|
33
|
-
"exclude": [ "node_modules", "Distribution" ]
|
|
34
|
-
}
|
package/tsconfig.json.old
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions":
|
|
3
|
-
{
|
|
4
|
-
"target": "ES2023",
|
|
5
|
-
"module": "nodenext",
|
|
6
|
-
"moduleResolution": "NodeNext",
|
|
7
|
-
|
|
8
|
-
"rootDir": "./Source",
|
|
9
|
-
"outDir": "./Distribution",
|
|
10
|
-
|
|
11
|
-
"lib":
|
|
12
|
-
[
|
|
13
|
-
"ES2023",
|
|
14
|
-
"DOM",
|
|
15
|
-
"DOM.Iterable"
|
|
16
|
-
],
|
|
17
|
-
|
|
18
|
-
"jsx": "react-jsx",
|
|
19
|
-
|
|
20
|
-
"types": [ "node" ],
|
|
21
|
-
"declaration": true,
|
|
22
|
-
"declarationMap": true,
|
|
23
|
-
"sourceMap": true,
|
|
24
|
-
|
|
25
|
-
"strict": true,
|
|
26
|
-
"isolatedModules": true,
|
|
27
|
-
|
|
28
|
-
"noUncheckedIndexedAccess": true,
|
|
29
|
-
"exactOptionalPropertyTypes": true,
|
|
30
|
-
"noImplicitOverride": true,
|
|
31
|
-
"useUnknownInCatchVariables": true,
|
|
32
|
-
|
|
33
|
-
"skipLibCheck": true,
|
|
34
|
-
"noEmitOnError": true
|
|
35
|
-
},
|
|
36
|
-
"include": [ "Source/**/*.ts", "Source/**/*.tsx" ],
|
|
37
|
-
"exclude": [ "node_modules" ]
|
|
38
|
-
}
|