37 lines
907 B
JSON
37 lines
907 B
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",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"composite": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@mono/auth-core": ["packages/auth-core/src"],
|
|
"@mono/auth-api": ["packages/auth-api/src"],
|
|
"@mono/auth-ui": ["packages/auth-ui/src"],
|
|
"@mono/database": ["packages/database/src"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/dist",
|
|
"**/.next",
|
|
"**/build",
|
|
"**/*.config.js",
|
|
"**/*.config.mjs"
|
|
]
|
|
}
|