19 lines
402 B
JSON
19 lines
402 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@shared/*": ["shared/*"],
|
|
"@common/*": ["common/*"]
|
|
}
|
|
},
|
|
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|