-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 889 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (24 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"noEmit": true,
"paths": {
"@shared/*": ["./src/shared/*"],
"@xlxz/components": ["./packages/components/src/index.ts"],
"@xlxz/components/toast": ["./packages/components/src/toast/index.ts"],
"@xlxz/components/config-panel": ["./packages/components/src/config-panel/index.ts"],
"@xlxz/components/floating-panel": ["./packages/components/src/floating-panel/index.ts"],
"@xlxz/components/animated-slider": ["./packages/components/src/animated-slider/index.ts"]
}
},
"include": ["src/**/*.ts", "scripts/**/*.ts"],
"exclude": ["node_modules", "dist"]
}