diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 18:41:33 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 16:26:53 -0800 |
commit | b7178e170466dc550e23e9b08dce9d07d9b4974c (patch) | |
tree | 4c47d00cd3ea709fed5d4c768168868ddc96186b /js/compiler.ts | |
parent | 38463848885bee38c2d509bbcd2ed453702d9f9f (diff) |
Upgrade Prettier to support BigInt syntax in TS
Diffstat (limited to 'js/compiler.ts')
-rw-r--r-- | js/compiler.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index 9ba018932..c9fa4611c 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -180,8 +180,8 @@ export class Compiler return this._moduleMetaDataMap.has(fileName) ? this._moduleMetaDataMap.get(fileName) : fileName.startsWith(ASSETS) - ? this._resolveModule(fileName, "") - : undefined; + ? this._resolveModule(fileName, "") + : undefined; } /** Given a `moduleSpecifier` and `containingFile` retrieve the cached |