@nsshunt/stsoauth2plugin 0.1.35 → 0.1.38
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/dist/stsoauth2plugin.es.js +12300 -0
- package/package.json +15 -5
- package/.eslintrc.json +0 -27
- package/.github/dependabot.yml +0 -13
- package/.github/workflows/npm-publish.yml +0 -54
- package/babel.config.json +0 -6
- package/build.sh +0 -29
- package/dist/Utils/CryptoUtils.js +0 -32
- package/dist/Utils/CryptoUtils.js.map +0 -1
- package/dist/Utils/QueryParams.js +0 -49
- package/dist/Utils/QueryParams.js.map +0 -1
- package/dist/index.js +0 -11
- package/dist/index.js.map +0 -1
- package/dist/index.test.js +0 -8
- package/dist/index.test.js.map +0 -1
- package/dist/stsStorage.js +0 -152
- package/dist/stsStorage.js.map +0 -1
- package/dist/stsoauth2manager.js +0 -354
- package/dist/stsoauth2manager.js.map +0 -1
- package/dist/stsoauth2types.js +0 -31
- package/dist/stsoauth2types.js.map +0 -1
- package/dist/stsoauth2worker.js +0 -587
- package/dist/stsoauth2worker.js.map +0 -1
- package/src/Utils/CryptoUtils.ts +0 -32
- package/src/Utils/QueryParams.ts +0 -48
- package/src/index.test.ts +0 -10
- package/src/index.ts +0 -12
- package/src/stsStorage.ts +0 -158
- package/src/stsoauth2manager.ts +0 -373
- package/src/stsoauth2types.ts +0 -111
- package/src/stsoauth2worker.ts +0 -583
- package/tsconfig.json +0 -32
package/tsconfig.json
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@tsconfig/node18/tsconfig.json",
|
|
3
|
-
"include": ["src/**/*" ],
|
|
4
|
-
"exclude": ["node_modules", "**/node_modules/**/*", "**/*.spec.ts"],
|
|
5
|
-
"compilerOptions": {
|
|
6
|
-
"module": "esnext",
|
|
7
|
-
"target": "es2021",
|
|
8
|
-
"moduleResolution": "node",
|
|
9
|
-
"sourceMap": true,
|
|
10
|
-
"outDir": "dist",
|
|
11
|
-
"allowJs": true,
|
|
12
|
-
"declaration": true,
|
|
13
|
-
"declarationDir": "./types",
|
|
14
|
-
"declarationMap": true,
|
|
15
|
-
|
|
16
|
-
"noImplicitAny": false,
|
|
17
|
-
"strictNullChecks": false,
|
|
18
|
-
|
|
19
|
-
"lib": [
|
|
20
|
-
// Should target at least ES2016 in Vue 3
|
|
21
|
-
// Support for newer versions of language built-ins are
|
|
22
|
-
// left for the users to include, because that would require:
|
|
23
|
-
// - either the project doesn't need to support older versions of browsers;
|
|
24
|
-
// - or the project has properly included the necessary polyfills.
|
|
25
|
-
"ES2016",
|
|
26
|
-
"DOM",
|
|
27
|
-
"DOM.Iterable",
|
|
28
|
-
"webworker"
|
|
29
|
-
// No `ScriptHost` because Vue 3 dropped support for IE
|
|
30
|
-
],
|
|
31
|
-
}
|
|
32
|
-
}
|