forked from HyperscapeAI/hyperscape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (45 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
46 lines (45 loc) · 1.05 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
44
45
{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"@/*": ["./packages/client/src/*"]
},
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"checkJs": false,
"noImplicitAny": false,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["node", "bun-types"],
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": [
"packages/client/src/**/*",
"packages/server/src/**/*"
],
"exclude": [
"node_modules",
"**/node_modules",
"**/dist",
"**/build",
"**/*.test.ts",
"**/*.spec.ts",
"**/test-*.ts",
"**/public/**",
"packages/asset-forge/**/*"
]
}