dxfl 0.1.7 → 0.1.8
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/.editorconfig +22 -0
- package/.prettierignore +3 -0
- package/.prettierrc.json +3 -0
- package/CHANGELOG.md +48 -0
- package/README.md +64 -1
- package/dist/_empty.js +64 -0
- package/dist/auth.js +6 -6
- package/dist/bucket.js +174 -0
- package/dist/config.js +185 -0
- package/dist/deploy.js +300 -241
- package/dist/empty.js +73 -0
- package/dist/index.js +23 -14
- package/dist/utils.js +113 -0
- package/dist/website_config.js +410 -0
- package/package.json +15 -4
- package/tsconfig.json +13 -14
package/tsconfig.json
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
12
12
|
|
|
13
13
|
/* Language and Environment */
|
|
14
|
-
"target": "es2016"
|
|
15
|
-
"lib": [
|
|
14
|
+
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
|
15
|
+
"lib": [
|
|
16
|
+
"es6"
|
|
17
|
+
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
|
|
16
18
|
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
17
19
|
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
18
20
|
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
@@ -25,7 +27,7 @@
|
|
|
25
27
|
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
26
28
|
|
|
27
29
|
/* Modules */
|
|
28
|
-
"module": "nodenext"
|
|
30
|
+
"module": "nodenext" /* Specify what module code is generated. */,
|
|
29
31
|
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
30
32
|
//"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
31
33
|
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
@@ -33,7 +35,7 @@
|
|
|
33
35
|
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
34
36
|
"typeRoots": [
|
|
35
37
|
"node_modules/@types"
|
|
36
|
-
]
|
|
38
|
+
] /* Specify multiple folders that act like './node_modules/@types'. */,
|
|
37
39
|
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
38
40
|
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
39
41
|
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
@@ -53,14 +55,14 @@
|
|
|
53
55
|
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
54
56
|
|
|
55
57
|
/* Emit */
|
|
56
|
-
"declaration": true
|
|
58
|
+
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
|
|
57
59
|
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
58
60
|
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
59
61
|
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
60
62
|
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
61
63
|
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
62
64
|
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
63
|
-
"outDir": "dist"
|
|
65
|
+
"outDir": "dist" /* Specify an output folder for all emitted files. */,
|
|
64
66
|
// "removeComments": true, /* Disable emitting comments. */
|
|
65
67
|
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
66
68
|
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
@@ -80,12 +82,12 @@
|
|
|
80
82
|
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
81
83
|
// "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */
|
|
82
84
|
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
83
|
-
"esModuleInterop": true
|
|
85
|
+
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
|
84
86
|
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
85
|
-
"forceConsistentCasingInFileNames": true
|
|
87
|
+
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
|
86
88
|
|
|
87
89
|
/* Type Checking */
|
|
88
|
-
"strict": true
|
|
90
|
+
"strict": true /* Enable all strict type-checking options. */,
|
|
89
91
|
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
90
92
|
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
91
93
|
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
@@ -108,10 +110,7 @@
|
|
|
108
110
|
|
|
109
111
|
/* Completeness */
|
|
110
112
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
111
|
-
"skipLibCheck": true
|
|
113
|
+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
112
114
|
},
|
|
113
|
-
"exclude": [
|
|
114
|
-
"dist",
|
|
115
|
-
"node_modules"
|
|
116
|
-
]
|
|
115
|
+
"exclude": ["dist", "node_modules"]
|
|
117
116
|
}
|