mono/packages/auth-ui/tsconfig.json

22 lines
478 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"declaration": true,
"declarationMap": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"jsx": "react-jsx",
"baseUrl": "../..",
"paths": {
"@mono/auth-core": ["packages/auth-core/src"]
}
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"],
"references": [
{ "path": "../auth-core" }
]
}