graphql-codegen-plugin-helpers
Advanced tools
Comparing version 0.19.0-alpha.02a522e7 to 0.19.0-alpha.07841c6e
{ | ||
"name": "graphql-codegen-plugin-helpers", | ||
"version": "0.19.0-alpha.02a522e7", | ||
"version": "0.19.0-alpha.07841c6e", | ||
"description": "graphql-codegen-cli template for TypeScript typings for both client side and server side", | ||
@@ -8,3 +8,3 @@ "repository": "git@github.com:dotansimha/graphql-code-generator.git", | ||
"scripts": { | ||
"build": "tsc" | ||
"build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs" | ||
}, | ||
@@ -18,3 +18,4 @@ "peerDependencies": { | ||
"import-from": "2.1.0", | ||
"ts-log": "2.1.4" | ||
"ts-log": "2.1.4", | ||
"tslib": "1.9.3" | ||
}, | ||
@@ -24,7 +25,9 @@ "devDependencies": { | ||
}, | ||
"main": "./dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"sideEffects": false, | ||
"main": "dist/commonjs/index.js", | ||
"module": "dist/esnext/index.js", | ||
"typings": "dist/esnext/index.d.ts", | ||
"typescript": { | ||
"definition": "dist/index.d.ts" | ||
"definition": "dist/esnext/index.d.ts" | ||
} | ||
} |
{ | ||
"compilerOptions": { | ||
"importHelpers": true, | ||
"experimentalDecorators": true, | ||
"module": "commonjs", | ||
"target": "es5", | ||
"module": "esnext", | ||
"target": "es2018", | ||
"lib": ["es6", "esnext", "es2015"], | ||
"suppressImplicitAnyIndexErrors": true, | ||
"moduleResolution": "node", | ||
@@ -13,2 +13,3 @@ "emitDecoratorMetadata": true, | ||
"outDir": "./dist/", | ||
"rootDir": "./src", | ||
"noImplicitAny": true, | ||
@@ -15,0 +16,0 @@ "noImplicitThis": true, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
35915
44
884
6
9
+ Addedtslib@1.9.3
+ Addedtslib@1.9.3(transitive)