ogi-addon 3.0.0 → 4.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/build/SearchEngine.d.cts +2 -31
- package/build/SearchEngine.d.mts +2 -31
- package/build/config/Configuration.cjs.map +1 -1
- package/build/config/Configuration.d.cts +5 -4
- package/build/config/Configuration.d.mts +5 -4
- package/build/config/Configuration.mjs.map +1 -1
- package/build/config/ConfigurationBuilder.cjs +2 -2
- package/build/config/ConfigurationBuilder.cjs.map +1 -1
- package/build/config/ConfigurationBuilder.d.cts +13 -15
- package/build/config/ConfigurationBuilder.d.mts +13 -15
- package/build/config/ConfigurationBuilder.mjs +2 -2
- package/build/config/ConfigurationBuilder.mjs.map +1 -1
- package/build/extraction.cjs +80 -0
- package/build/extraction.cjs.map +1 -0
- package/build/extraction.d.cts +5 -0
- package/build/extraction.d.mts +5 -0
- package/build/extraction.mjs +78 -0
- package/build/extraction.mjs.map +1 -0
- package/build/main.cjs +91 -169
- package/build/main.cjs.map +1 -1
- package/build/main.d.cts +27 -409
- package/build/main.d.mts +27 -409
- package/build/main.mjs +91 -168
- package/build/main.mjs.map +1 -1
- package/package.json +4 -4
- package/src/SearchEngine.ts +1 -34
- package/src/config/Configuration.ts +6 -8
- package/src/config/ConfigurationBuilder.ts +47 -30
- package/src/extraction.ts +87 -0
- package/src/main.ts +358 -765
- package/tsconfig.json +1 -1
package/tsconfig.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// Module resolution
|
|
10
10
|
"baseUrl": "./", // Lets you set a base directory to resolve non-absolute module names.
|
|
11
11
|
"esModuleInterop": true, // fixes some issues TS originally had with the ES6 spec where TypeScript treats CommonJS/AMD/UMD modules similar to ES6 module
|
|
12
|
-
"moduleResolution": "
|
|
12
|
+
"moduleResolution": "bundler", // resolves workspace packages with package.json "exports"
|
|
13
13
|
"resolveJsonModule": true,
|
|
14
14
|
"paths": {}, // A series of entries which re-map imports to lookup locations relative to the baseUrl
|
|
15
15
|
|