mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
28 lines
539 B
JSON
28 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/lib",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es6"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__mocks__/*",
|
|
"**/__tests__/*"
|
|
]
|
|
}
|