ciorent 1.0.5 → 1.0.7

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/src/utils.ts DELETED
@@ -1,16 +0,0 @@
1
- export type Extend<T extends any[]> = [...T, ...any[]];
2
-
3
- export let loadedResolve: (res?: any) => void;
4
- export let loadedReject: (reason?: any) => void;
5
-
6
- export const loadResolvers = (
7
- res: (value?: any) => void,
8
- rej: (reason?: any) => void,
9
- ): void => {
10
- loadedResolve = res;
11
- loadedReject = rej;
12
- };
13
-
14
- export const loadResolve = (res: (value?: any) => void): void => {
15
- loadedResolve = res;
16
- };
package/tsconfig.json DELETED
@@ -1,42 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Enable latest features
4
- "lib": [
5
- "ESNext.AsyncIterable",
6
- "ES2015.Iterable",
7
- "ESNext",
8
- "DOM",
9
- "DOM.Iterable",
10
- "DOM.AsyncIterable",
11
- "WebWorker.ImportScripts",
12
- "Webworker.Iterable",
13
- "WebWorker.AsyncIterable"
14
- ],
15
- "target": "ESNext",
16
-
17
- // Module
18
- "module": "Preserve",
19
- "moduleDetection": "force",
20
- "resolveJsonModule": true,
21
- "isolatedModules": true,
22
- "moduleResolution": "Bundler",
23
- "allowImportingTsExtensions": true,
24
- "verbatimModuleSyntax": true,
25
-
26
- // Best practices
27
- "strict": true,
28
- "skipLibCheck": true,
29
- "noUnusedLocals": false,
30
- "noImplicitAny": true,
31
- "noImplicitOverride": true,
32
- "noImplicitThis": true,
33
- "noUnusedParameters": false,
34
- "noFallthroughCasesInSwitch": true,
35
- "noPropertyAccessFromIndexSignature": false,
36
-
37
- // Declaration
38
- "declaration": true,
39
- "isolatedDeclarations": true,
40
- "emitDeclarationOnly": true
41
- }
42
- }