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