-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.09 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
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"target": "es5",
"module": "esnext",
"jsx": "react-jsx",
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": false,
// Sentry options
"sourceMap": true,
"inlineSources": true,
// Set `sourceRoot` to `/` to strip the build path prefix from
// generated source code references. This allows Sentry to match source files
// relative to your source root folder.
"sourceRoot": "/",
// ensure that ACCESS_CONFIG is made globally available
"typeRoots": [
"./node_modules/@types",
"./src/globals.d.ts"
]
},
"include": [
"src/**/*",
"mui.d.ts",
"src/globals.d.ts"
],
"paths": {
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"]
}
}