diff --git a/src/generators/AbstractGenerator.ts b/src/generators/AbstractGenerator.ts index 3dc35dbebe..1f1f321c17 100644 --- a/src/generators/AbstractGenerator.ts +++ b/src/generators/AbstractGenerator.ts @@ -2,7 +2,7 @@ import { CommonInputModel, CommonModel, OutputModel, Preset, Presets } from '../ import { InputProcessor } from '../processors'; import { IndentationTypes } from '../helpers'; import { isPresetWithOptions } from '../utils'; -import { RenderOutput } from 'models/RenderOutput'; +import { RenderOutput } from '../models/RenderOutput'; export interface CommonGeneratorOptions
{ indentation?: { diff --git a/src/interpreter/InterpretAdditionalItems.ts b/src/interpreter/InterpretAdditionalItems.ts index dfa259d4c3..52f20a3da9 100644 --- a/src/interpreter/InterpretAdditionalItems.ts +++ b/src/interpreter/InterpretAdditionalItems.ts @@ -1,5 +1,5 @@ -import { CommonModel } from 'models'; -import { Schema } from 'models/Schema'; +import { CommonModel } from '../models'; +import { Schema } from '../models/Schema'; import { Interpreter, InterpreterOptions } from './Interpreter'; /** diff --git a/src/interpreter/InterpretAdditionalProperties.ts b/src/interpreter/InterpretAdditionalProperties.ts index 120dc27453..7b5e4b11bd 100644 --- a/src/interpreter/InterpretAdditionalProperties.ts +++ b/src/interpreter/InterpretAdditionalProperties.ts @@ -1,5 +1,5 @@ -import { CommonModel } from 'models'; -import { Schema } from 'models/Schema'; +import { CommonModel } from '../models'; +import { Schema } from '../models/Schema'; import { Interpreter, InterpreterOptions } from './Interpreter'; import { isModelObject } from './Utils';