diff options
Diffstat (limited to 'lib/compilers/haskell.ts')
-rw-r--r-- | lib/compilers/haskell.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/compilers/haskell.ts b/lib/compilers/haskell.ts index 7b20f2df4..4446127e7 100644 --- a/lib/compilers/haskell.ts +++ b/lib/compilers/haskell.ts @@ -24,11 +24,11 @@ import path from 'path'; -import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces'; -import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; -import {BaseCompiler} from '../base-compiler'; +import type {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js'; +import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js'; +import {BaseCompiler} from '../base-compiler.js'; -import {ClangParser} from './argument-parsers'; +import {ClangParser} from './argument-parsers.js'; export class HaskellCompiler extends BaseCompiler { static get key() { |