1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Fix the build and the CompatSsoLoginList query

This commit is contained in:
Quentin Gliech
2023-04-27 21:07:14 +02:00
parent 826e84904e
commit aa8d5b6aed
5 changed files with 314 additions and 1800 deletions

View File

@ -7,7 +7,13 @@ const config: CodegenConfig = {
generates: {
"./src/gql/": {
preset: "client",
plugins: [],
plugins: [
{
add: {
content: "/* eslint-disable */",
},
},
],
},
"./src/gql/schema.ts": {
plugins: [
@ -20,7 +26,9 @@ const config: CodegenConfig = {
],
},
},
hooks: { afterOneFileWrite: ["prettier --write"] },
hooks: {
afterOneFileWrite: ["prettier --write"],
},
};
export default config;