-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 689 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 689 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
25
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@romie/device-profiles": ["src/packages/device-profiles/src"],
"@romie/ra-hasher": ["src/packages/ra-hasher/src"],
"@main/*": ["src/main/*"],
"@/*": ["src/*"]
},
"types": ["vite/client"]
},
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.d.ts", "src/**/*.vue"],
"exclude": ["node_modules", "dist", "drizzle"]
}