28 lines
938 B
JSON
28 lines
938 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"typeRoots": [
|
|
"./@features/landing/frontend-public/node_modules/@types",
|
|
"../node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@features/*": ["./@features/*/shared/src", "./@features/*"],
|
|
"@lilith/ui-auth": ["./@packages/ui-auth/src/index.ts"],
|
|
"react": ["./@features/landing/frontend-public/node_modules/@types/react/index.d.ts"],
|
|
"react/jsx-runtime": ["./@features/landing/frontend-public/node_modules/@types/react/jsx-runtime.d.ts"]
|
|
}
|
|
}
|
|
}
|