forked from liveloveapp/hashbrown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.13 KB
/
tsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@hashbrownai/angular": ["packages/angular/src/index.ts"],
"@hashbrownai/azure": ["packages/azure/src/index.ts"],
"@hashbrownai/core": ["packages/core/src/index.ts"],
"@hashbrownai/google": ["packages/google/src/index.ts"],
"@hashbrownai/openai": ["packages/openai/src/index.ts"],
"@hashbrownai/react": ["packages/react/src/index.ts"],
"@hashbrownai/tool-javascript": ["packages/tool-javascript/src/index.ts"],
"@hashbrownai/writer": ["packages/writer/src/index.ts"],
"tater-js": ["packages/streaming-json-parser/index.ts"]
}
},
"angularCompilerOptions": {
"strict": true,
"strictTemplates": true
},
"exclude": ["node_modules", "tmp"]
}