mt940-mbank-ts/tsconfig.json

23 lines
488 B
JSON
Raw Permalink Normal View History

{
2022-10-23 08:36:26 +02:00
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
2023-12-10 15:15:13 +01:00
"target": "ES2020",
2022-10-23 08:36:26 +02:00
"declaration": true,
"esModuleInterop": true,
2023-12-10 15:15:13 +01:00
"lib": ["ES6", "ESNext", "DOM"],
2022-10-23 08:36:26 +02:00
"outDir": "lib",
"checkJs": true,
"allowJs": true,
"declarationDir": "@types",
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true
},
2023-12-10 15:15:13 +01:00
"include": ["src/**/*"],
"exclude": ["node_modules/**"]
2022-10-23 08:36:26 +02:00
}