diff options
Diffstat (limited to 'js/build.ts')
-rw-r--r-- | js/build.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/build.ts b/js/build.ts index 636f9a082..347dd4e72 100644 --- a/js/build.ts +++ b/js/build.ts @@ -15,12 +15,12 @@ export interface BuildInfo { // 'build' is injected by rollup.config.js at compile time. export const build: BuildInfo = { - // tslint:disable:no-any + /* eslint-disable @typescript-eslint/no-explicit-any */ // These string will be replaced by rollup arch: `ROLLUP_REPLACE_ARCH` as any, os: `ROLLUP_REPLACE_OS` as any, gnArgs: `ROLLUP_REPLACE_GN_ARGS` - // tslint:disable:any + /* eslint-enable @typescript-eslint/no-explicit-any */ }; // TODO(kevinkassimo): deprecate Deno.platform |