-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
78 lines (78 loc) · 1.96 KB
/
Copy pathtsconfig.json
File metadata and controls
78 lines (78 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2023",
"lib": [
"ES2023"
],
"module": "Preserve",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"paths": {
"@hraness/slopcamera": [
"./src/index.ts"
],
"@hraness/slopcamera/cli": [
"./src/cli.ts"
],
"@hraness/slopcamera/code": [
"./src/code/index.ts"
],
"@hraness/slopcamera/code/advanced": [
"./src/code/advanced.ts"
],
"@hraness/slopcamera/generate": [
"./src/generate.ts"
],
"@hraness/slopcamera/host-resources": [
"./src/host-resources.ts"
],
"@hraness/slopcamera/operations": [
"./src/operations.ts"
],
"@hraness/slopcamera/workflow": [
"./src/workflow.ts"
],
"@hraness/slopcamera/scene": [
"./packages/scene/src/index.ts"
],
"@hraness/slopcamera/local/code": [
"./apps/desktop/code/public.ts"
],
"@hraness/slopcamera/local/code/advanced": [
"./apps/desktop/code/advanced.ts"
],
"@hraness/slopcamera/local/code/workflows": [
"./apps/desktop/workflows/index.ts"
],
"@hraness/slopcamera/local/html-overlay": [
"./apps/desktop/html-overlay/index.ts"
]
},
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"allowImportingTsExtensions": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true,
"types": [
"bun"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"packages/scene/**/*.ts",
"scripts/**/*.ts",
"examples/**/*.ts",
"examples/**/*.tsx"
]
}