forked from project-slippi/slippi-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 999 Bytes
/
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
{
"extends": "./node_modules/electron-webpack/tsconfig-base.json",
"compilerOptions": {
"lib": ["dom", "es2019"],
"paths": {
"@/*": ["renderer/*"],
"common/*": ["common/*"],
"@broadcast/*": ["broadcast/*"],
"@dolphin/*": ["dolphin/*"],
"@replays/*": ["replays/*"],
"@settings/*": ["settings/*"],
"@console/*": ["console/*"]
},
"baseUrl": "src/",
"jsx": "react",
"noEmit": false,
"noEmitOnError": false,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"strictPropertyInitialization": true,
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"resolveJsonModule": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": ["node_modules", "packaging"]
}