1
0
forked from icd/mt940-mbank-ts
mt940-mbank-ts/tsconfig.json
migueldar 84a9b530d4 updated to reflect the testing infrastructure changes from sealgen
Summary: Ref T2697

Reviewers: #testers, kuba-orlik

Reviewed By: #testers, kuba-orlik

Subscribers: kuba-orlik

Maniphest Tasks: T2697

Differential Revision: https://hub.sealcode.org/D1323
2023-04-14 17:53:23 +02:00

23 lines
480 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"target": "ES6",
"declaration": true,
"esModuleInterop": true,
"lib": ["ES6", "ESNext"],
"outDir": "lib",
"checkJs": true,
"allowJs": true,
"declarationDir": "@types",
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true
},
"include": ["src/**/*", ],
"exclude": ["node_modules/**"]
}