UNPKG

354 BPlain TextView Raw
1import { Project } from '../fs/project.js';
2
3/**
4 * A preprocessor changes files before writing them to the sandbox.
5 * Stuff like rewriting references tsconfig.json files or adding // @ts-nocheck
6 * This is a private api that we might want to open up in the future.
7 */
8export interface FilePreprocessor {
9 preprocess(files: Project): Promise<void>;
10}