console/packages/migrations/tsconfig.json
2024-04-07 11:57:03 +03:00

27 lines
750 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"rootDir": "./",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"strict": true,
"paths": {
"@hive/cdn-script/artifact-storage-reader": [
"../services/cdn-worker/src/artifact-storage-reader.ts"
],
"@hive/storage": ["../services/storage/src/index.ts"],
"@hive/service-common": ["../services/service-common/src/index.ts"]
}
},
"include": ["src"]
}