mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
37 lines
763 B
JSON
37 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./lib",
|
|
"module": "commonjs",
|
|
"target": "ES2018",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": ".",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"plugins": [
|
|
{
|
|
"transform": "ts-auto-mock/transformer",
|
|
"cacheBetweenTests": false
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |