-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
61 lines (61 loc) · 1.5 KB
/
tsconfig.json
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
53
54
55
56
57
58
59
60
61
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"baseUrl": "./",
"composite": true,
"incremental": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./build",
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2022", "dom"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"types": ["node", "jest"],
"paths": {
"*": ["node_modules/*", "packages/*", "services/*", "websites/*", "clis/*"]
},
"target": "ES2022",
"module": "ES2022",
"esModuleInterop": true,
"moduleResolution": "node"
},
"ts-node": {
"esm": true,
"files": true,
"experimentalSpecifierResolution": "node"
},
"include": ["clis/**/*.ts", "packages/**/*.ts", "services/**/*.ts", "websites/**/*.ts"],
"exclude": ["node_modules", "dist", "build"],
"references": [
{
"path": "clis/gpt"
},
{
"path": "packages/arguments"
},
{
"path": "packages/configuration"
},
{
"path": "packages/gc"
},
{
"path": "packages/telemetry"
}
]
}