Improve import alias
@file/ and @export/ instead of file/ and export/ etc
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import { expect } from "chai";
|
||||
import { Formatter } from "export/formatter";
|
||||
|
||||
import { Formatter } from "@export/formatter";
|
||||
|
||||
import { CompatibilitySetting } from "./compatibility-setting";
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
|
||||
import { XmlAttributeComponent, XmlComponent } from "@file/xml-components";
|
||||
|
||||
// Currently, this is hard-coded for Microsoft word compatSettings.
|
||||
// Theoretically, we could add compatSettings for other programs, but
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { expect } from "chai";
|
||||
import { Formatter } from "export/formatter";
|
||||
|
||||
import { EMPTY_OBJECT } from "file/xml-components";
|
||||
import { Formatter } from "@export/formatter";
|
||||
import { EMPTY_OBJECT } from "@file/xml-components";
|
||||
|
||||
import { Compatibility } from "./compatibility";
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { OnOffElement, XmlComponent } from "file/xml-components";
|
||||
import { OnOffElement, XmlComponent } from "@file/xml-components";
|
||||
import { CompatibilitySetting } from "./compatibility-setting/compatibility-setting";
|
||||
|
||||
// <xsd:complexType name="CT_Compat">
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { expect } from "chai";
|
||||
|
||||
import { Formatter } from "export/formatter";
|
||||
import { Formatter } from "@export/formatter";
|
||||
|
||||
import { Settings } from "./settings";
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { OnOffElement, XmlAttributeComponent, XmlComponent } from "file/xml-components";
|
||||
import { OnOffElement, XmlAttributeComponent, XmlComponent } from "@file/xml-components";
|
||||
|
||||
import { Compatibility } from "./compatibility";
|
||||
|
||||
|
Reference in New Issue
Block a user