-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
29 lines (29 loc) · 1.1 KB
/
tsconfig.base.json
File metadata and controls
29 lines (29 loc) · 1.1 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
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"target": "es2022",
"lib": ["es2022"],
"noEmit": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"strict": true,
"paths": {
"@cursorless/lib-cheatsheet": ["./packages/lib-cheatsheet"],
"@cursorless/lib-common": ["./packages/lib-common"],
"@cursorless/lib-engine": ["./packages/lib-engine"],
"@cursorless/lib-neovim-common": ["./packages/lib-neovim-common"],
"@cursorless/lib-neovim-registry": ["./packages/lib-neovim-registry"],
"@cursorless/lib-node-common": ["./packages/lib-node-common"],
"@cursorless/lib-sentence-parser": ["./packages/lib-sentence-parser"],
"@cursorless/lib-talonjs-core": ["./packages/lib-talonjs-core"],
"@cursorless/lib-test-case-recorder": [
"./packages/lib-test-case-recorder"
],
"@cursorless/lib-tutorial": ["./packages/lib-tutorial"],
"@cursorless/lib-vscode-common": ["./packages/lib-vscode-common"]
}
}
}