@barndoor-ai/sdk 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.
package/tsconfig.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Language and Environment
4
+ "target": "ES2020",
5
+ "lib": ["ES2020", "DOM"],
6
+ "module": "ESNext",
7
+ "moduleResolution": "node",
8
+ "allowSyntheticDefaultImports": true,
9
+ "esModuleInterop": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "resolveJsonModule": true,
12
+
13
+ // Type Checking - Strict Mode
14
+ "strict": true,
15
+ "noImplicitAny": true,
16
+ "strictNullChecks": true,
17
+ "strictFunctionTypes": true,
18
+ "strictBindCallApply": true,
19
+ "strictPropertyInitialization": true,
20
+ "noImplicitThis": true,
21
+ "noImplicitReturns": true,
22
+ "noFallthroughCasesInSwitch": true,
23
+ "noUncheckedIndexedAccess": true,
24
+ "noImplicitOverride": true,
25
+ "exactOptionalPropertyTypes": true,
26
+
27
+ // Additional Checks
28
+ "noUnusedLocals": true,
29
+ "noUnusedParameters": true,
30
+ "noPropertyAccessFromIndexSignature": true,
31
+
32
+ // Emit
33
+ "declaration": true,
34
+ "declarationMap": true,
35
+ "sourceMap": true,
36
+ "outDir": "./dist",
37
+ "removeComments": false,
38
+ "importHelpers": true,
39
+
40
+ // Interop Constraints
41
+ "isolatedModules": true,
42
+ "allowJs": false,
43
+ "checkJs": false,
44
+
45
+ // Skip type checking of declaration files
46
+ "skipLibCheck": true
47
+ },
48
+ "include": [
49
+ "src/**/*",
50
+ "test/**/*",
51
+ "examples/**/*"
52
+ ],
53
+ "exclude": [
54
+ "node_modules",
55
+ "dist",
56
+ "**/*.js"
57
+ ],
58
+ "ts-node": {
59
+ "esm": true
60
+ }
61
+ }