Files
anonklub/query-api/tsconfig.json
sripwoud e347971a0e refactor: delete proving server related code (#316) (#317)
* bump lock file

* delete `/apis/prove`

* move `/apis/query/` into `query-api/`

* remove `/infra`

* update config files

* format

* remove @anonklub/proof ts reference from circom pkg

* tsignore

* pin `@anonklub/proof` package in ui

* remove unused config in hook

* tsignore (discord bot)

* delete apis/prove

* remove tsignore directive

* update env vars

* skip build of `@anonklub/proof` in vlaidate workflow

version was pinned in UI and CLI

* avoid pre rendering for beacon query page

 see https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic

By default, next will try to pre-render and fetch the data at build time
However, this is a dune query that is subject to query credits... sometimes the query fails. It should not prevent building the app though.

* Remove prove api url from ui config
2024-01-30 16:15:28 +01:00

23 lines
570 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true
}
}