forked from schrodinger/pymol-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
52 lines (49 loc) · 1.89 KB
/
Copy pathtsconfig.base.json
File metadata and controls
52 lines (49 loc) · 1.89 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023", "DOM", "DOM.Iterable", "WebWorker"],
"module": "ESNext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"jsx": "react-jsx",
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"incremental": true,
"baseUrl": ".",
"paths": {
"@tenmol/protocol": ["packages/protocol/src/index.ts"],
"@tenmol/protocol/*": ["packages/protocol/src/*"],
"@tenmol/backend": ["packages/backend/src/index.ts"],
"@tenmol/backend/*": ["packages/backend/src/*"],
"@tenmol/engine-ts": ["packages/engine-ts/src/index.ts"],
"@tenmol/engine-ts/*": ["packages/engine-ts/src/*"],
"@tenmol/client": ["packages/client/src/index.ts"],
"@tenmol/client/*": ["packages/client/src/*"],
"@tenmol/stores": ["packages/stores/src/index.ts"],
"@tenmol/stores/*": ["packages/stores/src/*"],
"@tenmol/ui": ["packages/ui/src/index.ts"],
"@tenmol/ui/*": ["packages/ui/src/*"],
"@tenmol/viewport": ["packages/viewport/src/index.ts"],
"@tenmol/viewport/*": ["packages/viewport/src/*"],
"@tenmol/menu-data": ["packages/menu-data/src/index.ts"],
"@tenmol/menu-data/*": ["packages/menu-data/src/*"],
"@tenmol/testing": ["packages/testing/src/index.ts"],
"@tenmol/testing/*": ["packages/testing/src/*"]
}
},
"exclude": ["node_modules", "dist", "build", "**/generated/**/*.js"]
}