-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 1.16 KB
/
tsconfig.json
File metadata and controls
45 lines (45 loc) · 1.16 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": "ES2022",
"module": "es2022",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": ".",
"resolveJsonModule": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"@rdcp.dev/admin-ui": ["tests/shims/admin-ui.ts"],
"@rdcp.dev/admin-ui-react": ["tests/shims/admin-ui-react.ts"],
"react": ["tests/shims/react.ts"],
"react-dom/server": ["tests/shims/react-dom-server.ts"],
"@rdcp.dev/server": ["dist/types/src/index.d.ts"],
"@rdcp.dev/otel-plugin": ["packages/otel-plugin/dist/index.d.ts"],
"@rdcp.dev/*": ["packages/rdcp-*/dist/index.d.ts"]
},
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"exactOptionalPropertyTypes": true
},
"include": [
"src/**/*",
"examples/**/*",
"tests/**/*"
],
"exclude": [
"node_modules",
"dist",
"coverage"
],
"ts-node": {
"esm": true
}
}