You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
oneline: "Reduce the number of projects loaded automatically by TypeScript."
4
4
---
5
5
6
-
In multi-project TypeScript programs, TypeScript will load all of the available projects into memory in order to provide accurate results for editor responses which require a full knowledge graph like 'Find All References'.
If your project is large, you can use the flag `disableReferencedProjectLoad` to disable the automatic loading of all projects. Instead, projects are loaded dynamically as you open files through your editor.
This option can be used on a per-file basis too similar to [Babel's `/* @jsxFrag h */` directive](https://babeljs.io/docs/en/babel-plugin-transform-react-jsx#fragments).
54
+
このオプションは[Babelの`/* @jsxFrag h */`ディレクティブ](https://babeljs.io/docs/en/babel-plugin-transform-react-jsx#fragments)とよく似ており、ファイル単位で使用できます。
Copy file name to clipboardExpand all lines: docs/tsconfig/ja/options/jsxImportSource.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@ display: "jsxImportSource"
3
3
oneline: "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.`"
4
4
---
5
5
6
-
Declares the module specifier to be used for importing the `jsx` and `jsxs` factory functions when using [`jsx`](#jsx) as `"react-jsx"` or `"react-jsxdev"` which were introduced in TypeScript 4.1.
With [React 17](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html) the library supports a new form of JSX transformation via a separate import.
Copy file name to clipboardExpand all lines: docs/tsconfig/ja/options/watchFile.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@ display: "watchFile"
3
3
oneline: "Specify how the TypeScript watch mode works."
4
4
---
5
5
6
-
The strategy for how individual files are watched.
6
+
個々のファイルを監視する方法を指定します。
7
7
8
-
-`fixedPollingInterval`: Check every file for changes several times a second at a fixed interval.
9
-
-`priorityPollingInterval`: Check every file for changes several times a second, but use heuristics to check certain types of files less frequently than others.
10
-
-`dynamicPriorityPolling`: Use a dynamic queue where less-frequently modified files will be checked less often.
11
-
-`useFsEvents` (the default): Attempt to use the operating system/file system's native events for file changes.
12
-
-`useFsEventsOnParentDirectory`: Attempt to use the operating system/file system's native events to listen for changes on a file's parent directory
0 commit comments