File tree Expand file tree Collapse file tree 6 files changed +24
-19
lines changed
graphql-authentication-prisma Expand file tree Collapse file tree 6 files changed +24
-19
lines changed Original file line number Diff line number Diff line change 13
13
],
14
14
"license" : " ISC" ,
15
15
"private" : false ,
16
- "main" : " dist/src/ index.js" ,
17
- "typings" : " dist/src/ index.d.ts" ,
16
+ "main" : " dist/index.js" ,
17
+ "typings" : " dist/index.d.ts" ,
18
18
"engines" : {
19
19
"node" : " >=8.0"
20
20
},
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ./ tsconfig" ,
2
+ "extends" : " ../../ tsconfig.base.json " ,
3
3
"compilerOptions" : {
4
+ "rootDir" : " src" ,
4
5
"outDir" : " dist"
5
6
},
6
7
"include" : [" src/index.ts" ]
Original file line number Diff line number Diff line change 12
12
],
13
13
"license" : " ISC" ,
14
14
"private" : false ,
15
- "main" : " dist/src/ index.js" ,
16
- "typings" : " dist/src/ index.d.ts" ,
15
+ "main" : " dist/index.js" ,
16
+ "typings" : " dist/index.d.ts" ,
17
17
"engines" : {
18
18
"node" : " >=8.0"
19
19
},
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ./ tsconfig" ,
2
+ "extends" : " ../../ tsconfig.base.json " ,
3
3
"compilerOptions" : {
4
+ "rootDir" : " src" ,
4
5
"outDir" : " dist"
5
6
},
6
7
"include" : [" src/index.ts" ]
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "target" : " ES2017" ,
4
+ "module" : " commonjs" ,
5
+ "declaration" : true ,
6
+ "lib" : [" esnext" ],
7
+ "strict" : true ,
8
+ // Disabled because this doesn't work correctly with "declaration": true
9
+ "noUnusedLocals" : false ,
10
+ "noImplicitAny" : false ,
11
+ "forceConsistentCasingInFileNames" : true ,
12
+ "allowSyntheticDefaultImports" : true
13
+ }
14
+ }
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ./tsconfig.base.json" ,
2
3
"compilerOptions" : {
3
4
"baseUrl" : " ./packages" ,
4
5
"paths" : {
5
6
"graphql-authentication" : [" ./graphql-authentication/src" ]
6
- },
7
- "target" : " ES2017" ,
8
- "module" : " commonjs" ,
9
- "declaration" : true ,
10
- "lib" : [" esnext" ],
11
- "strict" : true ,
12
- // Disabled because Prisma generated TypeScript code which is not compatible with this flag
13
- "strictFunctionTypes" : false ,
14
- // Disabled because this doesn't work correctly with "declaration": true
15
- "noUnusedLocals" : false ,
16
- "noImplicitAny" : false ,
17
- "forceConsistentCasingInFileNames" : true ,
18
- "allowSyntheticDefaultImports" : true
7
+ }
19
8
}
20
9
}
You can’t perform that action at this time.
0 commit comments