26 lines
523 B
JSON
26 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": false,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"@shared/*": [
|
|
"../shared/src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|