@media-quest/builder 0.0.1

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/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@media-quest/builder",
3
+ "version": "0.0.1",
4
+ "description": "Builder library for Media-quest schemas",
5
+ "main": "./src/public-api.ts",
6
+ "license": "MIT",
7
+ "dependencies": {
8
+ "@media-quest/engine": "0.0.1"
9
+ }
10
+ }
@@ -0,0 +1,6 @@
1
+ import {createEngine} from "@media-quest/engine";
2
+ export const logBuilder = () => {
3
+ const engine = createEngine();
4
+ console.log(engine.innerText);;
5
+ console.log("HELLO FROM BUILDER!! I Have imported engine with innerText: " + engine.innerText)
6
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022",
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "declaration": true,
7
+ "strict": true,
8
+ "incremental": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "rootDir": "./src",
13
+ "outDir": "./dist",
14
+ "composite": true
15
+ }
16
+ }