forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.json
39 lines (35 loc) · 930 Bytes
/
base.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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"checkJs": true,
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"isolatedModules": true,
"preserveSymlinks": false,
"useDefineForClassFields": true,
"lib": [],
"moduleResolution": "node",
"resolveJsonModule": true,
"types": [],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"jsx": "preserve",
"module": "CommonJS",
"target": "ES2020"
},
"typeAcquisition": {
"enable": false
}
}