37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@mono/auth-core": ["packages/auth-core/src"],
|
|
"@mono/auth-core/*": ["packages/auth-core/src/*"],
|
|
"@mono/auth-api": ["packages/auth-api/src"],
|
|
"@mono/auth-api/*": ["packages/auth-api/src/*"],
|
|
"@mono/auth-ui": ["packages/auth-ui/src"],
|
|
"@mono/auth-ui/*": ["packages/auth-ui/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"references": [
|
|
{ "path": "packages/auth-core" },
|
|
{ "path": "packages/auth-api" },
|
|
{ "path": "packages/auth-ui" }
|
|
]
|
|
}
|