-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 716 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 716 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/external/*"] },
"incremental": true,
"module": "commonjs",
// Node.js >= 22 supports almost 100% of ES2024 (https://node.green/#ES2024)
"target": "esnext",
"lib": ["esnext"],
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true,
"rootDir": "lib",
"outDir": "./dist",
"sourceMap": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["node_modules/@types", "types/external"],
"noUnusedLocals": true,
"importHelpers": true,
"skipLibCheck": true
},
"include": ["lib/**/*"],
"exclude": ["node_modules"]
}