@raystack/chronicle 0.1.2 → 0.2.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.
@@ -7,6 +7,11 @@ export interface ChronicleConfig {
7
7
  search?: SearchConfig
8
8
  footer?: FooterConfig
9
9
  api?: ApiConfig[]
10
+ llms?: LlmsConfig
11
+ }
12
+
13
+ export interface LlmsConfig {
14
+ enabled?: boolean
10
15
  }
11
16
 
12
17
  export interface ApiConfig {
package/tsconfig.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": false,
4
+ "declaration": true,
5
+ "declarationMap": true,
6
+ "esModuleInterop": true,
7
+ "forceConsistentCasingInFileNames": true,
8
+ "inlineSources": false,
9
+ "isolatedModules": true,
10
+ "noUnusedLocals": false,
11
+ "noUnusedParameters": false,
12
+ "preserveWatchOutput": true,
13
+ "skipLibCheck": true,
14
+ "strict": true,
15
+ "jsx": "react-jsx",
16
+ "module": "ESNext",
17
+ "target": "es6",
18
+ "outDir": "dist",
19
+ "rootDir": ".",
20
+ "baseUrl": ".",
21
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
22
+ "moduleResolution": "bundler",
23
+ "paths": {
24
+ "@/*": ["./src/*"],
25
+ "@/.source/*": ["./.source/*"]
26
+ }
27
+ },
28
+ "include": ["src", ".source", "source.config.ts"],
29
+ "exclude": ["node_modules", "dist"]
30
+ }