-
-
Notifications
You must be signed in to change notification settings - Fork 287
/
tsconfig.json
33 lines (33 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
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
// Already tested with eslint
"noUnusedLocals": false,
"jsx": "react",
"noImplicitAny": true,
"types": ["node"],
"baseUrl": "./",
"paths": {
"@toolpad/core": ["./packages/toolpad-core/src"],
"@toolpad/core/*": ["./packages/toolpad-core/src/*"],
"docs-toolpad/*": ["./docs/*"],
"@mui-internal/api-docs-builder": ["./node_modules/@mui/monorepo/packages/api-docs-builder"],
"@mui-internal/api-docs-builder/*": [
"./node_modules/@mui/monorepo/packages/api-docs-builder/*"
],
"docs/*": ["./node_modules/@mui/monorepo/docs/*"],
"@mui/docs/*": ["./node_modules/@mui/monorepo/packages/mui-docs/src/*"]
}
},
"include": ["./test", "packages/toolpad-utils/src/http.ts"]
}