-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 831 Bytes
/
Copy pathtsconfig.json
File metadata and controls
30 lines (30 loc) · 831 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
25
26
27
28
29
30
{
"$schema": "./node_modules/@effect/language-service/schema.json",
"compilerOptions": {
"target": "esnext",
"lib": ["es2023", "dom"],
"moduleDetection": "force",
"module": "preserve",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"strict": true,
"noUnusedLocals": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"types": ["vitest/importMeta"],
"allowImportingTsExtensions": true,
"paths": {
"effect-libreoffice": ["./packages/effect-libreoffice/src/index.ts"],
"@effect-libreoffice/api": ["./packages/api/src/index.ts"]
},
"plugins": [
{
"name": "@effect/language-service"
}
]
},
"include": ["packages/*/src", "apps/*/src"]
}