mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-26 03:38:12 +08:00
* Disabled @blueprintjs/classes-constants. #2288. * thuang-eslint-bp-off (#2344) * Disabled @blueprintjs/classes-constants on webpack dev and shared. #2288. * Added TS recommended, suppress lint errors codemod. * Added per-error/warning ignore for tests. * Added per-error/warning ignore for configuration. * Added per-error/warning ignore for src. Removed suppress package. * Minor linting. Co-authored-by: Timmy Huang <tihuan@users.noreply.github.com>
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
export const baseDataURL = "https://a.fake.url/api/v0.2";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any --- FIXME: disabled temporarily on migrate to TS.
|
|
(window as any).CELLXGENE = {
|
|
API: {
|
|
prefix: baseDataURL,
|
|
version: "v0.2/",
|
|
},
|
|
};
|
|
|
|
export { schema } from "./schema";
|
|
export * from "./routes";
|