mirror of
https://github.com/dsebastien/obsidian-cli-rest.git
synced 2026-07-22 07:02:18 +00:00
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"lib": ["DOM", "ESNext"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"inlineSources": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"checkJs": false,
|
|
|
|
// Maximum strictness
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"skipLibCheck": true,
|
|
|
|
// Output
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*", "test/**/*", "eslint.config.ts", "commitlint.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|