mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:38:11 +03:00
Fix lint CI (#6567)
This commit is contained in:
parent
41a8257e8d
commit
0a8f80959f
@ -2,7 +2,7 @@
|
||||
|
||||
import * as semver from 'semver'
|
||||
|
||||
import * as linkedDist from '../../../../../target/ensogl-pack/linked-dist/index'
|
||||
import * as linkedDist from '../../../../../target/ensogl-pack/linked-dist'
|
||||
import BUILD_INFO from '../../../build.json' assert { type: 'json' }
|
||||
|
||||
// Aliases with the same name as the original.
|
||||
|
17
app/ide-desktop/lib/types/modules.d.ts
vendored
17
app/ide-desktop/lib/types/modules.d.ts
vendored
@ -2,6 +2,23 @@
|
||||
*
|
||||
* This file MUST NOT `export {}` for the modules to be visible to other files. */
|
||||
|
||||
declare module '*/build.json' {
|
||||
interface BuildInfo {
|
||||
commit: string
|
||||
version: string
|
||||
engineVersion: string
|
||||
name: string
|
||||
}
|
||||
|
||||
const BUILD_INFO: BuildInfo
|
||||
export default BUILD_INFO
|
||||
}
|
||||
|
||||
declare module '*/ensogl-pack/linked-dist' {
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
export * from '../../../../lib/rust/ensogl/pack/js/src/runner/index'
|
||||
}
|
||||
|
||||
declare module '*/gui/config.yaml' {
|
||||
interface Config {
|
||||
windowAppScopeName: string
|
||||
|
Loading…
Reference in New Issue
Block a user