mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-26 09:43:59 +01:00
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
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": {
|
|
"@core": ["../core/src"],
|
|
"@core/*": ["../core/src/*"]
|
|
},
|
|
/* 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": "remove"
|
|
}
|
|
}
|