Skip to content
Snippets Groups Projects
Commit 1e2bfb43 authored by Berend Sliedrecht's avatar Berend Sliedrecht
Browse files

make ssi-abstraction buildable with new repo structure


Signed-off-by: default avatarBerend Sliedrecht <sliedrecht@berend.io>
parent 8e338fb7
No related branches found
No related tags found
No related merge requests found
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "es6",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"composite": true,
"removeComments": false,
"declaration": true,
"sourceMap": true,
"incremental": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./",
"strictPropertyInitialization": false,
"sourceMap": true,
"strictNullChecks": true,
"paths": {
"@src/*": ["src/*"],
"@config/*": ["config/*"],
"@globalUtils/*" :["src/globalUtils/*"],
"@common/*":["src/common/*"],
"@agent/*":["src/agent/*"],
"@didComm/*":["src/didComm/*"],
"@health/*":["src/health/*"],
"@DB/*":["src/prisma/*"]
}
"rootDir": "./src"
},
"exclude": [
"node_modules",
"./dist/**/*"
]
"include": ["src", "config"],
"exclude": ["node_modules", "./dist/**/*"]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment