mirror of
https://github.com/anonklub/anonklub.git
synced 2026-05-03 03:00:04 -04:00
* 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
23 lines
570 B
JSON
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
|
|
}
|
|
}
|