-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
54 lines (54 loc) · 1.68 KB
/
tsconfig.json
File metadata and controls
54 lines (54 loc) · 1.68 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"compilerOptions": {
"target": "es5",
"module": "CommonJS",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noImplicitAny": true,
"jsx": "react-jsx",
"strict": false, // TODO Make this work.
"skipLibCheck": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"strictNullChecks": false, // TODO Make this work.
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["../../src/*"],
"@/next-log/*": ["../../src/lib/next-log/src/*"],
"@/zod2gql": ["../../src/lib/zod2gql/src"],
"@/auth/*": ["../../src/components/auth/src/*"],
"@/appwrapper/*": ["../../src/components/appwrapper/src/*"],
"@/dynamic-form/*": ["../../src/components/dynamic-form/src/*"],
"@/interactive/*": ["../../src/interactive/src/*"],
"@/interface/*": ["../../src/interface/*"],
"@/iteration/*": ["../../src/iteration/*"]
}
},
"include": [
"src/**/*",
"src/index.ts",
"src/Style/**/*.css",
"../interface/hooks/usePrompt.ts",
"../interface/hooks/useProvider.ts",
"../interface/hooks/z.ts",
"../interface/hooks/useChain.ts",
"../interface/hooks/useAgent.ts",
"../interface/hooks/useCommand.ts",
"../interface/Selectors/AgentSelector.tsx",
"../interface/Selectors/PromptSelector.tsx",
"../interface/Selectors/CommandSelector.tsx",
"../interface/Selectors/ChainSelector.tsx"
],
"exclude": ["node_modules", "dist", "src/**/*.stories.*"]
}