feat: improve monorepo dev experience

This commit is contained in:
2023-10-27 22:45:44 +02:00
parent f618725598
commit c6ab4ae48b
124 changed files with 2647 additions and 2857 deletions

View File

@@ -15,25 +15,28 @@
import {ThingType} from './types';
import {MapAggTestOptions} from '../../map-agg-test-options';
/** @integer */
export type Integer = number;
/**
* @indexable
*/
export interface InheritedProperty extends Bar {
foo: number;
/** @filterable */
foo: Integer;
type: ThingType.InheritedProperty;
// type: ThingType.InheritedProperty;
}
interface Bar {
/**
* @keyword
*/
bar: string;
//bar: string;
/**
* @float
*/
baz: number;
// baz: number;
}
export const testConfig: MapAggTestOptions = {