This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.tsnode.json
71 lines (71 loc) · 2.3 KB
/
tsconfig.tsnode.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"strict": true,
"esModuleInterop": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"lib": [
"es2020",
"dom",
"dom.iterable"
],
"allowJs": false,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"references": [
{
"path": "./tsconfig.node.json"
}
],
"files": [
"./src/App.tsx",
"./src/main.tsx",
"./src/store.ts",
"./src/types.ts",
"./src/vite-env.d.ts",
"./src/components /Music/AudioSound.tsx",
"./src/components /Music/MusicCard.tsx",
"./src/components /Music/RecentMusic.tsx",
"./src/components /Music/SavedMusic.tsx",
"./src/components /Music/SearchResult.tsx",
"./src/components /Navigation/Mobile.tsx",
"./src/components /Navigation/Sidebar.tsx",
"./src/components /NowPlaying/Desktop/Footer.tsx",
"./src/components /NowPlaying/Desktop/Page.tsx",
"./src/components /NowPlaying/Mobile/Footer.tsx",
"./src/components /NowPlaying/Mobile/Page.tsx",
"./src/components /Pages/Home/Header.tsx",
"./src/components /Pages/Home/Section.tsx",
"./src/components /Pages/Home/index.tsx",
"./src/components /Pages/Library/index.tsx",
"./src/components /Pages/Search/index.tsx",
"./src/context/AudioContext.tsx",
"./src/hooks/index.ts",
"./src/reducers/audioReducer.ts",
"./src/reducers/playingReducer.ts",
"./src/reducers/recommendationsReducer.ts",
"./src/reducers/searchReducer.ts",
"./src/services/recommendations.ts",
"./src/services/search.ts",
"./api/search.ts",
"./api/types.ts",
"./api/routes/search.ts",
"./api/services/search.ts"
],
"include": [
"src",
"api"
]
}