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