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": { "compilerOptions": {
"target": "es6", "composite": true,
"experimentalDecorators": true, "removeComments": false,
"emitDecoratorMetadata": true, "declaration": true,
"module": "commonjs", "sourceMap": true,
"incremental": true,
"outDir": "./dist", "outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./", "baseUrl": "./",
"strictPropertyInitialization": false, "rootDir": "./src"
"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/*"]
}
}, },
"exclude": [ "include": ["src", "config"],
"node_modules", "exclude": ["node_modules", "./dist/**/*"]
"./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