21 lines
563 B
JSON
21 lines
563 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@lilith/feature-flags": ["../shared/src/index.ts"],
|
|
"@lilith/feature-flags-backend-api-msw": ["../backend-api-msw/src/index.ts"],
|
|
"@/*": ["../frontend-admin/src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|