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

27 lines
668 B
JSON
Raw Normal View History

2019-01-25 10:43:13 +00:00
{
"extends": "./tsconfig.compile.json",
2019-01-25 10:43:13 +00:00
"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"
],
2022-05-23 21:09:47 +00:00
},
"skipLibCheck": true, // TODO @peculiar/x509 should use @peculiar/webcrypto-types. Remove this line when it's fixed
},
"exclude": [
"packages/types/test/types.spec.ts"
]
2019-01-25 10:43:13 +00:00
}