Socket
Socket
Sign inDemoInstall

@awdware/gah-shared

Package Overview
Dependencies
0
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.45 to 0.0.46

lib/models/gah-angular-compiler-options.d.ts

30

assets/gah-host-schema.json

@@ -42,2 +42,6 @@ {

},
"angularCompilerOptions": {
"description": "Some of the Angular compiler options",
"$ref": "#/definitions/GahAngularCompilerOptions"
},
"isHost": {

@@ -64,2 +68,28 @@ "type": "boolean"

}
},
"GahAngularCompilerOptions": {
"type": "object",
"properties": {
"strictPropertyInitialization": {
"type": "boolean"
},
"strictNullChecks": {
"type": "boolean"
},
"noImplicitAny": {
"type": "boolean"
},
"strictBindCallApply": {
"type": "boolean"
},
"strictFunctionTypes": {
"type": "boolean"
},
"noImplicitReturns": {
"type": "boolean"
},
"forceConsistentCasingInFileNames": {
"type": "boolean"
}
}
}

@@ -66,0 +96,0 @@ },

import { ModuleReference } from './module-reference';
import { GahAngularCompilerOptions } from './gah-angular-compiler-options';
export declare class GahHost {

@@ -24,4 +25,8 @@ protected $schema: string;

baseHref?: string;
/**
* Some of the Angular compiler options
*/
angularCompilerOptions?: GahAngularCompilerOptions;
get isHost(): boolean;
constructor();
}

2

lib/models/ts-config.d.ts

@@ -0,3 +1,5 @@

import { GahAngularCompilerOptions } from './gah-angular-compiler-options';
export declare class TsConfig {
compilerOptions: TsConfigCompilerOptions;
angularCompilerOptions?: GahAngularCompilerOptions;
}

@@ -4,0 +6,0 @@ export declare class TsConfigCompilerOptions {

4

package.json
{
"name": "@awdware/gah-shared",
"version": "0.0.45",
"version": "0.0.46",
"description": "Provides types and interfaces for gah",

@@ -32,3 +32,3 @@ "main": "./lib/index.js",

"typesVersions": {
"<3.9": {
"<4.0": {
"*": [

@@ -35,0 +35,0 @@ "type-compat/ts3.4/index.d.ts"

import { ModuleReference } from './module-reference';
import { GahAngularCompilerOptions } from './gah-angular-compiler-options';
export declare class GahHost {

@@ -24,4 +25,8 @@ protected $schema: string;

baseHref?: string;
/**
* Some of the Angular compiler options
*/
angularCompilerOptions?: GahAngularCompilerOptions;
readonly isHost: boolean;
constructor();
}

@@ -0,3 +1,5 @@

import { GahAngularCompilerOptions } from './gah-angular-compiler-options';
export declare class TsConfig {
compilerOptions: TsConfigCompilerOptions;
angularCompilerOptions?: GahAngularCompilerOptions;
}

@@ -4,0 +6,0 @@ export declare class TsConfigCompilerOptions {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc