fix(build): switch to relative imports
This commit is contained in:
parent
b74fb4f1b9
commit
0ab6de765d
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"allowJs": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"baseUrl": "../",
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"importHelpers": true,
|
||||
|
@ -12,12 +13,15 @@
|
|||
"es2017",
|
||||
"esnext.asynciterable"
|
||||
],
|
||||
"module": "esnext",
|
||||
"module": "es6",
|
||||
"moduleResolution": "node",
|
||||
"noImplicitAny": true,
|
||||
"noImplicitReturns": true,
|
||||
"paths": {},
|
||||
"noImplicitThis": true,
|
||||
"outDir": "../out",
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"target": "es2017",
|
||||
"types": [
|
||||
"jsonpath-plus",
|
||||
|
@ -30,7 +34,7 @@
|
|||
]
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
"../node_modules"
|
||||
],
|
||||
"include": [
|
||||
"../src/**/*",
|
||||
|
|
|
@ -124,4 +124,4 @@ export function parseArgs(argv: Array<string>) {
|
|||
args,
|
||||
mode,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,4 +22,4 @@ export class YamlParser implements Parser {
|
|||
});
|
||||
return docs;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -162,4 +162,4 @@ describe('rule visitor', () => {
|
|||
mockRule.verify();
|
||||
expect(ctx.errors.length).to.equal(0);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue