Files
pybricks-code/src/react-app-env.d.ts
T
David Lechner 69e52be259 remove wasm file extension rename workaround
This modifies the webpack config instead of renaming the .wasm file
to workaround default webpack behavior regarding import .wasm files.
2021-01-11 16:47:49 -06:00

17 lines
268 B
TypeScript

/// <reference types="react-scripts" />
declare module '*.json' {
const src: unknown;
export default src;
}
declare module '*.wasm' {
const src: string;
export default src;
}
declare module '*.zip' {
const src: string;
export default src;
}