We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67daf4e commit 63dc05eCopy full SHA for 63dc05e
1 file changed
packages/sqlite_async/lib/src/web/worker/worker.dart
@@ -7,16 +7,15 @@
7
/// dart compile js \
8
/// lib/src/web/worker/db_worker.dart \
9
/// -o build/db_worker.js \
10
-/// -O4
+/// -O4 \
11
/// -Dsqlite3.dartbigints=false
12
/// ```
13
///
14
/// The output should then be included in each project's `web` directory.
15
16
/// Disabling `sqlite3.dartbigints` as a compile-time option reduces the size of
17
/// the worker by disabling support for [BigInt] values which are implemented in
18
-/// Dart. The worker still supports native JavaScript bigint values, so this
19
-/// doesn't affect functionality.
+/// Dart. This doesn't affect functionality, and is purely an optimization.
20
library;
21
22
import 'package:sqlite3_web/sqlite3_web.dart';
0 commit comments