forked from kenmingwang/azusa-player
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
54 lines (54 loc) · 1.6 KB
/
tsconfig.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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@utils/*": ["./src/utils/*"],
"@stores/*": ["./src/stores/*"],
"@hooks/*": ["./src/hooks/*"],
"@contexts/*": ["./src/contexts/*"],
"@styles/*": ["./src/styles/*"],
"@objects/*": ["./src/objects/*"],
"@background/*": ["./src/background/*"],
"@enums/*": ["./azusa-player-mobile/src/enums/*"],
"@APM/*": ["./azusa-player-mobile/src/*"]
},
"target": "esnext",
"module": "esnext",
"lib": ["DOM", "ESNext"],
"allowJs": true,
// "checkJs": true,
"jsx": "react",
// "declaration": true,
"sourceMap": true,
"outDir": "./build",
"rootDir": ".",
"removeComments": true,
"noEmit": true,
"isolatedModules": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
// "strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
//"noUnusedLocals": true,
//"noUnusedParameters": true,
//"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
//"noUncheckedIndexedAccess": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
// "allowUmdGlobalAccess": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src", "azusa-player-mobile/src/types"],
"exclude": ["node_modules", "build", "public"]
}