-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
72 lines (72 loc) · 1.75 KB
/
Copy pathtsconfig.json
File metadata and controls
72 lines (72 loc) · 1.75 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2023",
"lib": [
"ES2023",
"DOM",
"DOM.Iterable"
],
"module": "Preserve",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"paths": {
"@hraness/direct": [
"./src/index.ts"
],
"@hraness/direct/core": [
"./src/core/index.ts"
],
"@hraness/direct/react": [
"./src/react.ts"
],
"@hraness/direct/testing": [
"./src/testing/index.ts"
],
"@hraness/direct/tooling/browser-verification": [
"./src/tooling/browser-verification-entry.ts"
],
"@hraness/direct/tooling/bombadil": [
"./src/tooling/bombadil.ts"
],
"@hraness/direct/tooling/bombadil-campaign": [
"./src/tooling/bombadil-campaign.ts"
],
"@hraness/direct/tooling/bundle-boundary": [
"./src/tooling/bundle-boundary.ts"
],
"@hraness/direct/web": [
"./src/web.ts"
],
"@hraness/direct/effect": [
"./src/effect/index.ts"
]
},
"jsx": "react-jsx",
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"allowImportingTsExtensions": true,
"erasableSyntaxOnly": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true,
"types": [
"bun"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"scripts/**/*.ts",
"examples/**/*.ts",
"examples/**/*.tsx"
]
}