mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
015ea60d25
This prevents documents specified in a deno.json's "exclude" from being pre-loaded by the lsp. For example, someone may have something like: ```jsonc // deno.json { "exclude": [ "dist" // build directory ] } ```
20 lines
434 B
Rust
20 lines
434 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// Note: Only add code in this folder that has no application specific logic
|
|
pub mod checksum;
|
|
pub mod console;
|
|
pub mod diff;
|
|
pub mod display;
|
|
pub mod draw_thread;
|
|
pub mod file_watcher;
|
|
pub mod fs;
|
|
pub mod glob;
|
|
pub mod logger;
|
|
pub mod path;
|
|
pub mod progress_bar;
|
|
pub mod sync;
|
|
pub mod text_encoding;
|
|
pub mod time;
|
|
pub mod unix;
|
|
pub mod v8;
|
|
pub mod windows;
|