27 lines
523 B
JSON
27 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "esnext",
|
|
"lib": [
|
|
"es2017",
|
|
"esnext"
|
|
],
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@shared/*": [
|
|
"../shared/src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|