-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.5 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"strict": true,
"noEmit": false,
"outDir": "./dist",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": false,
"plugins": [
{
"name": "ts-lit-plugin",
"htmlTemplateTags": ["html", "raw"],
"cssTemplateTags": ["css"]
}
],
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": [],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/core/*": ["src/core/*"],
"@/testing/*": ["src/testing/*"],
"@/components/*": ["src/components/*"],
"@/styles/*": ["src/styles/*"],
"@/scripts/*": ["src/scripts/*"],
"@/app/*": ["src/app/*"],
"@actor-core/runtime": ["packages/actor-core-runtime/src/index.ts"],
"@actor-core/testing": ["packages/actor-core-testing/src/index.ts"],
"@agent-workflow/cli": ["packages/agent-workflow-cli/src/index.ts"]
}
},
"include": ["src/**/*", "*.js", "*.ts"],
"exclude": ["node_modules", "dist", "public"],
"references": [
{
"path": "./packages/actor-core-runtime"
},
{
"path": "./packages/actor-core-testing"
},
{
"path": "./packages/agent-workflow-cli"
}
]
}