-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 1.41 KB
/
tsconfig.json
File metadata and controls
43 lines (43 loc) · 1.41 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
38
39
40
41
42
43
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"paths": {
"catmint/*": ["./packages/catmint/src/*/index.ts"],
"catmint/runtime/context": ["./packages/catmint/src/runtime/context.ts"],
"@catmint/vite": ["./packages/catmint-vite/src/index.ts"],
"@catmint/cli": ["./packages/catmint-cli/src/index.ts"],
"@catmint/adapter-node": ["./packages/catmint-adapter-node/src/index.ts"],
"@catmint/adapter-vercel": [
"./packages/catmint-adapter-vercel/src/index.ts"
],
"@catmint/adapter-cloudflare": [
"./packages/catmint-adapter-cloudflare/src/index.ts"
]
}
},
"references": [
{ "path": "packages/catmint" },
{ "path": "packages/catmint-vite" },
{ "path": "packages/catmint-cli" },
{ "path": "packages/create-catmint" },
{ "path": "packages/catmint-adapter-node" },
{ "path": "packages/catmint-adapter-vercel" },
{ "path": "packages/catmint-adapter-cloudflare" }
],
"include": [],
"exclude": ["node_modules", "dist", "**/dist"]
}