forked from mui/base-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
25 lines (25 loc) · 768 Bytes
/
tsconfig.base.json
File metadata and controls
25 lines (25 loc) · 768 Bytes
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
{
"compilerOptions": {
"module": "nodenext",
"target": "es2020",
"lib": ["es2020", "dom"],
"jsx": "preserve",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"noErrorTruncation": false,
"allowJs": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"paths": {
"@base-ui-components/react": ["./packages/react/src"],
"@base-ui-components/react/*": ["./packages/react/src/*"],
"@base-ui-components/utils/*": ["./packages/utils/src/*"],
"docs/*": ["./docs/*"]
}
},
"exclude": ["**/.*/", "**/build", "**/build-tests", "**/node_modules", "docs/export"]
}