-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathtsconfig.json
More file actions
56 lines (56 loc) · 1.71 KB
/
Copy pathtsconfig.json
File metadata and controls
56 lines (56 loc) · 1.71 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
55
56
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"jsx": "react-jsx",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"types": ["node"],
"typeRoots": [
"../app-core/node_modules/@types",
"../../node_modules/@types",
"../../node_modules/.bun/node_modules/@types",
"../../../node_modules/@types",
"../../../node_modules/.bun/node_modules/@types",
"../../node_modules",
"../../node_modules/.bun/node_modules",
"../../../node_modules",
"../../../node_modules/.bun/node_modules"
],
"paths": {
"@elizaos/plugin-browser": ["./src/index.ts"],
"@elizaos/core": ["../../packages/core/src/index.node.ts"],
"@elizaos/logger": ["../../packages/logger/src/index.ts"],
"@elizaos/logger/*": ["../../packages/logger/src/*"],
"@elizaos/plugin-personal-assistant": [
"../../plugins/plugin-personal-assistant/src/index.ts"
],
"@elizaos/capacitor-appblocker": [
"../../plugins/plugin-native-appblocker/src/index.ts"
],
"@elizaos/capacitor-mobile-signals": [
"../../plugins/plugin-native-mobile-signals/src/index.ts"
]
}
},
"include": ["src"],
"references": [],
"exclude": [
"**/__tests__/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.e2e.test.ts"
]
}