-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.13 KB
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2021",
"module": "esnext",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noErrorTruncation": true,
"baseUrl": ".",
"paths": {
"@qn-oss/libs/sdk": ["packages/libs/sdk/src/index.ts"],
"@qn-oss/libs/ui/util": ["packages/libs/ui/util/src/index.ts"],
"@qn-oss/libs/util": ["packages/libs/util/src/index.ts"],
"@quicknode/icy-nft-hooks": [
"packages/libs/ui/nft-react-hooks/src/index.ts"
],
"@quicknode/sdk": ["packages/libs/sdk/src/index.ts"],
"@quicknode/token-gate": ["packages/libs/ui/token-gate/src/index.ts"]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"jsx": "react-jsx",
"strict": true
},
"exclude": ["node_modules", "tmp"]
}