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