build: prevent tsconfig includes sources outside (#2643)

This commit is contained in:
LongYinan
2023-06-01 17:08:14 +08:00
parent 07a502e840
commit 6bd2e6a619
25 changed files with 160 additions and 107 deletions
@@ -8,13 +8,7 @@ import useSWRImmutable from 'swr/immutable';
import { NIL } from 'uuid';
import { evalFilterList } from './filter';
import type { Filter, VariableMap } from './filter/vars';
export type View = {
id: string;
name: string;
filterList: Filter[];
};
import type { Filter, VariableMap, View } from './filter/shared-types';
type PersistenceView = View;