feat(ns-paystack): add changelog file to prettier ignore

This commit is contained in:
Brian Pooe 2023-06-04 17:51:59 +02:00
commit 22e1be347f
2 changed files with 29 additions and 20 deletions

View file

@ -2,3 +2,4 @@
/dist
/coverage
tsconfig.base.json
/**/*/CHANGELOG.md

View file

@ -1,22 +1,30 @@
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@bp-devtools/ns-paystack": ["libs/ns-paystack/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": [
"es2020",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@bp-devtools/ns-paystack": [
"libs/ns-paystack/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}