-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.unimportedrc.json
49 lines (49 loc) · 1.37 KB
/
.unimportedrc.json
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
46
47
48
49
{
"ignorePatterns": [
"**/node_modules/**",
"**/*.tests.{js,jsx,ts,tsx}",
"**/*.test.{js,jsx,ts,tsx}",
"**/*.spec.{js,jsx,ts,tsx}",
"**/*.stories.{js,jsx,ts,tsx}",
"**/*.ct-story.{js,jsx,ts,tsx}",
"**/tests/**",
"**/__tests__/**",
"**/*.d.ts"
],
"moduleDirectory": [
"node_modules",
"src/"
],
"rootDir": "./src",
"ignoreUnimported": [
"src/modules/Elements/LayoutWithBackgroundEmotion.tsx",
"src/modules/GameEngine/Input/MicStrategies/Yin.ts",
"src/modules/Songs/utils/song-fixture.ts",
"src/modules/hooks/useCallbackDebugger.ts",
"src/modules/hooks/useEffectDebugger.ts",
"src/modules/hooks/useMemoDebugger.ts",
"src/modules/utils/TestCanvas.tsx",
"src/modules/utils/delayPromise.ts",
"src/modules/utils/isoCodeToCountry.ts",
"src/modules/utils/testUtils.ts",
"src/modules/utils/useFeatureFlag.ts",
"src/routes/SingASong/SongSelection/Hooks/usePlaylistsEurovision.tsx",
"src/setupTests.ts",
"src/stories/songFixture.ts"
],
"ignoreUnused": [
"@mui/system",
"@mui/x-date-pickers",
"tailwindcss-motion"
],
"ignoreUnresolved": [
"../../../public/logo.svg?raw",
"modules/GameEngine/Drawing/Shaders/shader.frag?raw",
"modules/GameEngine/Drawing/Shaders/shader.vert?raw",
"utility-types"
],
"entry": [
"src/main.tsx",
"src/videos/index.ts"
]
}