389629258b
Continues to use esbuild for development mode and building. Also includes a `yarn lint` script that uses tsc to do full type checking. Fixes #5138 Signed-off-by: Mihai Parparita <mihai@tailscale.com>
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/**
|
|
* @fileoverview Type definitions for types generated by the esbuild build
|
|
* process.
|
|
*/
|
|
|
|
declare module "*.wasm" {
|
|
const path: string
|
|
export default path
|
|
}
|
|
|
|
declare const DEBUG: boolean
|