File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " graphql-codegen-validation-schema" ,
3
3
"version" : " 1.0.0" ,
4
- "description" : " A plugin for GraphQL codegen to generate form validation schema from your GraphQL schema" ,
5
- "main" : " ./dist/index.js" ,
4
+ "description" : " GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema" ,
5
+ "respository" : {
6
+ "type" : " git" ,
7
+ "url" : " https://github.com/Code-Hex/graphql-codegen-validation-schema.git"
8
+ },
9
+ "main" : " dist/index.js" ,
10
+ "files" : [
11
+ " dist/*.{js,ts}"
12
+ ],
6
13
"scripts" : {
14
+ "type-check" : " tsc --noEmit" ,
7
15
"test" : " echo \" Error: no test specified\" && exit 1" ,
8
- "generate" : " tsc && graphql-codegen"
16
+ "build" : " tsc" ,
17
+ "generate" : " tsc && graphql-codegen" ,
18
+ "prepublish" : " tsc"
9
19
},
10
20
"keywords" : [
11
21
" gql" ,
36
46
"@graphql-codegen/visitor-plugin-common" : " ^2.5.2" ,
37
47
"@graphql-tools/utils" : " ^8.6.1" ,
38
48
"graphql" : " ^15.8.0"
49
+ },
50
+ "bugs" : {
51
+ "url" : " https://github.com/Code-Hex/graphql-codegen-validation-schema/issues"
39
52
}
40
53
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " @tsconfig/recommended/tsconfig.json" ,
3
3
"compilerOptions" : {
4
- "incremental " : true ,
4
+ "declaration " : false ,
5
5
"outDir" : " ./dist" ,
6
6
"baseUrl" : " ." ,
7
7
"paths" : {}
10
10
" src/*.ts"
11
11
],
12
12
"exclude" : [
13
- " ./schemas .ts" ,
13
+ " ./gen/* .ts" ,
14
14
" ./dist"
15
15
]
16
16
}
You can’t perform that action at this time.
0 commit comments