forked from Heroic-Games-Launcher/HeroicGamesLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.unimportedrc.json
More file actions
27 lines (27 loc) · 729 Bytes
/
.unimportedrc.json
File metadata and controls
27 lines (27 loc) · 729 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
26
27
{
"rootDir": "./src",
"preset": "node",
"entry": [
"src/frontend/index.tsx",
"src/backend/main.ts",
"src/backend/preload.ts"
],
"aliases": {
"backend/*": ["./backend", "./backend/*"],
"common/*": ["./common", "./common/*"],
"frontend/*": ["./frontend", "./frontend/*"]
},
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"ignorePatterns": [
"**/node_modules/**",
"**/__tests__/**",
"**/__mocks__/**",
"common/typedefs/*.d.ts"
],
"ignoreUnimported": [
"src/backend/jest.config.js",
"src/common/types/proxy-types.ts"
],
"ignoreUnused": ["@fontsource/cabin", "@fontsource/rubik", "tslib"],
"ignoreUnresolved": ["../../tsconfig", "./writable.js", "type-fest"]
}