17 lines
362 B
JSON
17 lines
362 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["shared/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|