-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (29 loc) · 895 Bytes
/
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
{
"compilerOptions": {
// Type Checking
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
// Modules
"module": "node16",
// Emit
"declaration": true,
"noEmitOnError": true,
"outDir": "./dist/",
// Language and Environment
"target": "es2022",
"useDefineForClassFields": false, // instance fields using `[[define]]` semantics don’t play nicely with constructor parameter fields
// Completeness
"skipLibCheck": true,
},
"include": ["./src/"],
"typedocOptions": {
"name": "extrajs",
"entryPoints": ["./src/index.ts"],
"out": "./docs/api/",
},
}