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
// `vsce` will invoke this program's `ext_build`; however, it doesn't provide a way to pass the target when cross-compiling. Use an environment variable instead.
743
+
// `vsce` will invoke this program's `ext_build`; however, it doesn't
744
+
// provide a way to pass the target when cross-compiling. Use an environment
// The time, in ms, to wait between the last user edit and sending updated data
21
+
// to the Server.
20
22
exportconstautosave_timeout_ms=300;
21
23
22
-
// Produce a whole random number. Fractional numbers aren't consistently converted to the same number. Note that the mantissa of a JavaScript `Number` is 53 bits per the [docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number#number_encoding). To be certain, also round the result.
24
+
// Produce a whole random number. Fractional numbers aren't consistently
25
+
// converted to the same number. Note that the mantissa of a JavaScript `Number`
Copy file name to clipboardExpand all lines: client/src/tinymce-config.mts
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,9 @@ import {
25
25
RawEditorOptions,
26
26
TinyMCE,
27
27
}from"tinymce";
28
-
// This is taken from the [TinyMCE example code](https://github.com/tinymce/tinymce/blob/main/modules/tinymce/src/core/demo/ts/demo/TinyMceDemo.ts). However, esbuild doesn't accept it.
28
+
// This is taken from the
29
+
// [TinyMCE example code](https://github.com/tinymce/tinymce/blob/main/modules/tinymce/src/core/demo/ts/demo/TinyMceDemo.ts).
0 commit comments