-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.21 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"paths": {
"@execbox/core": ["./packages/core/src/index.ts"],
"@execbox/core/_internal": ["./packages/core/src/_internal/index.ts"],
"@execbox/core/mcp": ["./packages/core/src/mcp/index.ts"],
"@execbox/core/protocol": ["./packages/core/src/protocol/index.ts"],
"@execbox/quickjs": ["./packages/quickjs/src/index.ts"],
"@execbox/quickjs/runner": ["./packages/quickjs/src/runner/index.ts"],
"@execbox/quickjs/runner/protocol-endpoint": [
"./packages/quickjs/src/runner/protocolEndpoint.ts"
],
"@execbox/remote": ["./packages/remote/src/index.ts"],
"@execbox/isolated-vm": ["./packages/isolated-vm/src/index.ts"],
"@execbox/isolated-vm/runner": [
"./packages/isolated-vm/src/runner/index.ts"
]
},
"types": ["node", "vitest/globals"]
},
"include": [
"examples/**/*.ts",
"examples/execbox-isolated-vm-basic.ts",
"packages/core/**/*.ts",
"packages/quickjs/**/*.ts",
"packages/remote/**/*.ts",
"packages/isolated-vm/**/*.ts",
"scripts/**/*.ts",
"vitest.config.ts"
],
"exclude": ["**/node_modules", "packages/*/dist"]
}