mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Another tiny module (like tools/isobuild/css-modules.ts) that proves we can use TypeScript in programs/server/* code.
8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
export function pause() {
|
|
// The debugger pauses here when you run `meteor debug`, so that you can
|
|
// set breakpoints or add `debugger` statements to your server code
|
|
// before the code begins executing. Once you have set any breakpoints
|
|
// you wish to set, click the |▶ button to continue.
|
|
debugger;
|
|
}
|