This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
webcrypto/tsconfig.json

30 lines
741 B
JSON

{
"extends": "./tsconfig.compile.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@peculiar/webcrypto-types": [
"./packages/types/src"
],
"@peculiar/webcrypto-core": [
"./packages/core/src"
],
"@peculiar/webcrypto": [
"./packages/node/src"
],
"@peculiar/webcrypto-test": [
"./packages/test/src"
],
"@peculiar/webcrypto-pkcs11": [
"./packages/pkcs11/src"
],
"@peculiar/webcrypto-web": [
"./packages/web/src"
],
},
"skipLibCheck": true, // TODO @peculiar/x509 should use @peculiar/webcrypto-types. Remove this line when it's fixed
},
"exclude": [
"packages/types/test/types.spec.ts"
]
}