chapters-converter/tsconfig.json

23 lines
485 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,
"target": "ES6",
"declaration": true,
"esModuleInterop": true,
2023-12-15 20:26:03 +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-15 20:26:03 +01:00
"include": ["src/**/*"],
"exclude": ["node_modules/**"]
2022-10-23 08:36:26 +02:00
}