pdf-to-markdown/ui/tsconfig.json
2021-01-03 20:09:35 +01:00

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"
}
}