24 lines
550 B
JSON
24 lines
550 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@workspace/ui/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
||
|
|
}
|