fork-ts-checker-webpack-plugin
Version:
Runs typescript type checker and linter on separate process.
9 lines (8 loc) • 298 B
TypeScript
import { FileSystem } from './FileSystem';
/**
* It's an implementation of the FileSystem interface which reads and writes directly to the real file system.
*
* @param caseSensitive
*/
declare function createRealFileSystem(caseSensitive?: boolean): FileSystem;
export { createRealFileSystem };