-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.bin.json
More file actions
24 lines (24 loc) · 710 Bytes
/
tsconfig.bin.json
File metadata and controls
24 lines (24 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "http://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.jsonc",
"include": ["bin"],
"references": [{ "path": "./tsconfig.src.json" }],
"compilerOptions": {
"tsBuildInfoFile": ".tsbuildinfo/bin.tsbuildinfo",
"outDir": ".tsbuildinfo/bin",
"noEmit": true,
"erasableSyntaxOnly": false,
"baseUrl": ".",
"paths": {
"the-wireguard-effect": ["src/index.ts"],
"the-wireguard-effect/*": ["src/*.ts"]
},
"types": ["node"],
"plugins": [
{
"name": "@effect/language-service",
"namespaceImportPackages": []
}
]
}
}