-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (40 loc) · 954 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
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext",
"jsx": "react-jsx",
/* Modules */
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["vite/client", "vite-plugin-svgr/client", "node"],
"allowUmdGlobalAccess": true,
"resolveJsonModule": true,
/* JavaScript Support */
"allowJs": true,
"checkJs": true,
/* Emit */
"noEmit": true,
"noEmitOnError": true,
/* Interop Constraints */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
/* Module resolution */
"baseUrl": "./",
"paths": {
"@prozilla-os/*": ["packages/*/dist/main", "packages/*/src/main", "packages/games/*/dist/main", "packages/games/*/src/main"],
}
},
"include": [
"packages/**/*",
"scripts/**/*"
],
"exclude": [
"**/node_modules/**/*",
"**/dist/**/*",
"./.vscode",
"./.github",
],
}