mirror of
https://github.com/OpenBankProject/OBP-TypeScript.git
synced 2026-02-06 10:48:07 +00:00
17 lines
313 B
JSON
17 lines
313 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "ES6",
|
|
"outDir": "dist",
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["__tests__"]
|
|
}
|