-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathtsconfig.base.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022", "DOM"],
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node", "vitest/globals"],
"paths": {
"@meshkit/core": ["./packages/core/src/index.ts"],
"@meshkit/web": ["./packages/web/src/index.ts"],
"@meshkit/react-native": ["./packages/react-native/src/index.ts"],
"@meshkit/ionic": ["./packages/ionic/src/index.ts"],
"@meshkit/node": ["./packages/node/src/index.ts"],
"@meshkit/cli": ["./packages/cli/src/index.ts"],
"@meshkit/mcp": ["./packages/mcp/src/index.ts"],
"@meshkit/meshkit": ["./packages/meshkit/src/index.ts"]
}
},
"include": ["packages/*/src/**/*.ts", "packages/*/test/**/*.ts", "eslint.config.js"],
"exclude": ["node_modules", "packages/*/dist", ".npm-cache"]
}