mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-24 08:43:31 +01:00
30 lines
969 B
JSON
30 lines
969 B
JSON
{
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"baseUrl": "./",
|
|
/* paths - If you configure Snowpack import aliases, add them here. */
|
|
"paths": {},
|
|
/* noEmit - Snowpack builds (emits) files, not tsc. */
|
|
"noEmit": true,
|
|
/* Additional Options */
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
// "noImplicitThis": false,
|
|
// "alwaysStrict": false,
|
|
// "strictBindCallApply": false,
|
|
"strictNullChecks": false,
|
|
// "strictFunctionTypes": false,
|
|
// "strictPropertyInitialization": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error"
|
|
}
|
|
}
|