refactor: migrate to tsup for builds and update tsconfigs fix: update error handling and validation in payment service chore: update package scripts and dependencies docs: update README and env examples
17 lines
323 B
JavaScript
17 lines
323 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
extends: ['@repo/eslint-config/library.js'],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
rules: {
|
|
'turbo/no-undeclared-env-vars': [
|
|
'error',
|
|
{
|
|
allowList: ['NODE_ENV'],
|
|
},
|
|
],
|
|
},
|
|
};
|