@legalplace/tagextractor 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +52 -0
- package/.gitlab-ci.yml +43 -0
- package/.prettierrc.js +10 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7 -0
- package/dist/libs/ConditionsRunner.d.ts +17 -0
- package/dist/libs/ConditionsRunner.js +68 -0
- package/dist/libs/DataPopulator.d.ts +53 -0
- package/dist/libs/DataPopulator.js +194 -0
- package/dist/libs/Extractor.d.ts +17 -0
- package/dist/libs/Extractor.js +96 -0
- package/dist/libs/OvcConverter.d.ts +11 -0
- package/dist/libs/OvcConverter.js +132 -0
- package/dist/types/inputs.type.d.ts +9 -0
- package/dist/types/inputs.type.js +2 -0
- package/dist/types/ovc.type.d.ts +12 -0
- package/dist/types/ovc.type.js +2 -0
- package/dist/types/tags.type.d.ts +19 -0
- package/dist/types/tags.type.js +2 -0
- package/model.ts +84 -0
- package/package.json +41 -0
- package/src/index.ts +3 -0
- package/src/libs/ConditionsRunner.ts +99 -0
- package/src/libs/DataPopulator.ts +321 -0
- package/src/libs/Extractor.ts +146 -0
- package/src/libs/OvcConverter.ts +177 -0
- package/src/types/inputs.type.ts +10 -0
- package/src/types/ovc.type.ts +13 -0
- package/src/types/tags.type.ts +22 -0
- package/test.ts +8 -0
- package/tsconfig.eslint.json +12 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
// extend your base config so you don't have to redefine your compilerOptions
|
|
3
|
+
"extends": "./tsconfig.json",
|
|
4
|
+
"include": [
|
|
5
|
+
"src/**/*.ts",
|
|
6
|
+
"*.ts",
|
|
7
|
+
// etc
|
|
8
|
+
|
|
9
|
+
// if you have a mixed JS/TS codebase, don't forget to include your JS files
|
|
10
|
+
"src/**/*.js"
|
|
11
|
+
]
|
|
12
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": true,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"target": "es5",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"lib": ["es2018"],
|
|
7
|
+
"outDir": "./dist/",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"typeRoots": ["node_modules/@types"],
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"removeComments": true,
|
|
12
|
+
"declaration": true
|
|
13
|
+
},
|
|
14
|
+
"include": ["src"],
|
|
15
|
+
"exclude": ["node_modules"]
|
|
16
|
+
}
|