faasjs 6.1.0 → 6.3.0
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 +9 -5
- package/tsconfig.base.json +18 -0
- package/tsconfig.build.json +25 -0
- package/tsconfig.react.json +19 -0
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faasjs",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"files": [
|
|
6
|
+
"files": [
|
|
7
|
+
"tsconfig.base.json",
|
|
8
|
+
"tsconfig.react.json",
|
|
9
|
+
"tsconfig.build.json"
|
|
10
|
+
],
|
|
7
11
|
"homepage": "https://faasjs.com",
|
|
8
12
|
"repository": {
|
|
9
13
|
"type": "git",
|
|
@@ -15,9 +19,9 @@
|
|
|
15
19
|
},
|
|
16
20
|
"funding": "https://github.com/sponsors/faasjs",
|
|
17
21
|
"peerDependencies": {
|
|
18
|
-
"@faasjs/cli": "6.
|
|
19
|
-
"@faasjs/http": "6.
|
|
20
|
-
"@faasjs/types": "6.
|
|
22
|
+
"@faasjs/cli": "6.3.0",
|
|
23
|
+
"@faasjs/http": "6.3.0",
|
|
24
|
+
"@faasjs/types": "6.3.0"
|
|
21
25
|
},
|
|
22
26
|
"engines": {
|
|
23
27
|
"node": ">=22.0.0",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"esModuleInterop": true,
|
|
5
|
+
"skipLibCheck": true,
|
|
6
|
+
"target": "ESNext",
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"moduleDetection": "force",
|
|
10
|
+
"isolatedModules": true,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"strictNullChecks": true,
|
|
14
|
+
"noImplicitOverride": true,
|
|
15
|
+
"forceConsistentCasingInFileNames": true,
|
|
16
|
+
"exactOptionalPropertyTypes": true
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"esModuleInterop": true,
|
|
5
|
+
"skipLibCheck": true,
|
|
6
|
+
"target": "ESNext",
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"moduleDetection": "force",
|
|
10
|
+
"isolatedModules": true,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"strictNullChecks": true,
|
|
14
|
+
"noImplicitOverride": true,
|
|
15
|
+
"forceConsistentCasingInFileNames": true,
|
|
16
|
+
"exactOptionalPropertyTypes": true,
|
|
17
|
+
"jsx": "react-jsx",
|
|
18
|
+
"declaration": true,
|
|
19
|
+
"declarationMap": true,
|
|
20
|
+
"module": "ESNext",
|
|
21
|
+
"moduleResolution": "node",
|
|
22
|
+
"sourceMap": true,
|
|
23
|
+
"noEmit": true
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"esModuleInterop": true,
|
|
5
|
+
"skipLibCheck": true,
|
|
6
|
+
"target": "ESNext",
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"moduleDetection": "force",
|
|
10
|
+
"isolatedModules": true,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"strictNullChecks": true,
|
|
14
|
+
"noImplicitOverride": true,
|
|
15
|
+
"forceConsistentCasingInFileNames": true,
|
|
16
|
+
"exactOptionalPropertyTypes": true,
|
|
17
|
+
"jsx": "react-jsx"
|
|
18
|
+
}
|
|
19
|
+
}
|