-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
49 lines (49 loc) · 2.1 KB
/
tsconfig.json
File metadata and controls
49 lines (49 loc) · 2.1 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": false,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"jsx": "react-jsx",
"jsxImportSource": "@tanstack/redact",
"types": [],
"composite": false,
"baseUrl": ".",
"paths": {
"@tanstack/redact/jsx-runtime": ["./packages/redact/src/react/jsx-runtime.ts"],
"@tanstack/redact/jsx-dev-runtime": ["./packages/redact/src/react/jsx-runtime.ts"],
"@tanstack/redact/dom-client": ["./packages/redact/src/dom/client.ts"],
"@tanstack/redact/dom-test-utils": ["./packages/redact/src/dom/test-utils.ts"],
"@tanstack/redact/dom": ["./packages/redact/src/dom/index.ts"],
"@tanstack/redact/server": ["./packages/redact/src/server/index.ts"],
"@tanstack/redact/scheduler": ["./packages/redact/src/scheduler/index.ts"],
"@tanstack/redact/vite": ["./packages/redact/src/vite/index.ts"],
"@tanstack/redact": ["./packages/redact/src/react/index.ts"],
"react/jsx-runtime": ["./packages/redact/src/react/jsx-runtime.ts"],
"react/jsx-dev-runtime": ["./packages/redact/src/react/jsx-runtime.ts"],
"react": ["./packages/redact/src/react/index.ts"],
"react-dom/client": ["./packages/redact/src/dom/client.ts"],
"react-dom/server": ["./packages/redact/src/server/index.ts"],
"react-dom/test-utils": ["./packages/redact/src/dom/test-utils.ts"],
"react-dom": ["./packages/redact/src/dom/index.ts"],
"scheduler": ["./packages/redact/src/scheduler/index.ts"]
}
},
"include": ["packages/redact/src/**/*", "tests/**/*"],
"exclude": ["**/dist", "**/node_modules", "examples"]
}