-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (36 loc) · 1.39 KB
/
tsconfig.base.json
File metadata and controls
39 lines (36 loc) · 1.39 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
{
"compilerOptions": {
// Module settings
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2024",
"lib": ["ES2024", "dom", "dom.iterable", "webworker"],
// TS 7.0 defaults (can be removed entirely, shown for clarity)
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
// Additional strictness (not part of TS 7.0 defaults)
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// Other options
"sourceMap": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"paths": {
"@cosmosdb/schema-analyzer": ["./packages/schema-analyzer/src/index.ts"],
"@cosmosdb/schema-analyzer/json": ["./packages/schema-analyzer/src/json/index.ts"],
"@cosmosdb/schema-analyzer/*": [
"./packages/schema-analyzer/src/*.ts",
"./packages/schema-analyzer/src/*/index.ts"
],
"@cosmosdb/nosql-language-service": ["./packages/nosql-language-service/src/index.ts"],
"@cosmosdb/nosql-language-service/vscode": ["./packages/nosql-language-service/src/providers/vscode/index.ts"],
"@cosmosdb/nosql-language-service/monaco": ["./packages/nosql-language-service/src/providers/monaco/index.ts"],
"@cosmosdb/nosql-language-service/*": [
"./packages/nosql-language-service/src/*.ts",
"./packages/nosql-language-service/src/*/index.ts"
]
}
}
}