mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-07-16 00:00:04 +08:00
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a2b0aaa5e |
+1
-5
@@ -1,8 +1,4 @@
|
||||
# [6.0.0-alpha.2](https://github.com/danielsogl/awesome-cordova-plugins/compare/v6.0.0-alpha.1...v6.0.0-alpha.2) (2022-06-03)
|
||||
|
||||
|
||||
|
||||
# [6.0.0-alpha.1](https://github.com/danielsogl/awesome-cordova-plugins/compare/v6.0.0-alpha.0...v6.0.0-alpha.1) (2022-06-03)
|
||||
# [7.0.0-alpha.0](https://github.com/danielsogl/awesome-cordova-plugins/compare/v6.0.0-alpha.0...v7.0.0-alpha.0) (2022-06-03)
|
||||
|
||||
|
||||
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "awesome-cordova-plugins",
|
||||
"version": "6.0.0-alpha.2",
|
||||
"version": "7.0.0-alpha.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "awesome-cordova-plugins",
|
||||
"version": "6.0.0-alpha.2",
|
||||
"version": "7.0.0-alpha.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "2.4.0"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "awesome-cordova-plugins",
|
||||
"version": "6.0.0-alpha.2",
|
||||
"version": "7.0.0-alpha.0",
|
||||
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
|
||||
"homepage": "https://awesome-cordova-plugins.com",
|
||||
"author": "Daniel Sogl <me@danielsogl.com> (https://danielsogl.com)",
|
||||
|
||||
@@ -15,13 +15,14 @@ export function getProgram(rootNames: string[] = createSourceFiles()) {
|
||||
const options: CompilerOptions = clone(COMPILER_OPTIONS);
|
||||
options.basePath = ROOT;
|
||||
options.moduleResolution = ModuleResolutionKind.NodeJs;
|
||||
options.module = ModuleKind.ES2015;
|
||||
options.target = ScriptTarget.ES5;
|
||||
options.lib = ['dom', 'es2017'];
|
||||
options.module = ModuleKind.ES2020;
|
||||
options.target = ScriptTarget.ES2015;
|
||||
options.lib = ['dom', 'es2018'];
|
||||
options.inlineSourceMap = true;
|
||||
options.importHelpers = true;
|
||||
options.inlineSources = true;
|
||||
options.enableIvy = false;
|
||||
options.compilationMode = 'partial';
|
||||
|
||||
delete options.baseUrl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user