forked from switchboard-xyz/solana-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
54 lines (54 loc) · 1.46 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
{
"extends": "./tsconfig.base.json",
"exclude": [
"node_modules",
"**/tests/**/*.ts",
"lib"
],
"include": [
"src/**/*"
],
"compilerOptions": {
"module": "NodeNext",
"target": "es2022",
"lib": [
"ES2021",
"ES2022.Object",
"DOM"
],
"outDir": "lib",
"rootDir": "./src",
"declaration": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"useDefineForClassFields": true,
"strictPropertyInitialization": false,
"strict": true,
"strictNullChecks": true,
"allowJs": true
},
"typedocOptions": {
"entryPoints": [
"src/index.ts",
"src/SwitchboardProgram.ts",
"src/TransactionObject.ts",
"src/accounts/AggregatorAccount.ts",
"src/generated/index.ts",
"src/runner/index.ts",
"src/generated/accounts.ts",
"src/generated/instructions.ts",
"src/generated/types.ts",
"src/generated/oracle-program/index.ts",
"src/generated/oracle-program/accounts/index.ts",
"src/generated/oracle-program/instructions/index.ts",
"src/generated/oracle-program/types/index.ts",
"src/generated/attestation-program/index.ts",
"src/generated/attestation-program/accounts/index.ts",
"src/generated/attestation-program/instructions/index.ts",
"src/generated/attestation-program/types/index.ts"
]
}
}