mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 06:49:50 +00:00
On branch development Your branch is ahead of 'origin/development' by 1 commit. (use "git push" to publish your local commits) Changes to be committed: deleted: .eslintignore deleted: .eslintrc new file: changelog/2026-05-02_01.md new file: eslint.config.mjs modified: package.json modified: pnpm-lock.yaml modified: src/services/perplexityService.ts modified: styles.css modified: tsconfig.json
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options */
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* Strict Type-Checking */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
/* Module Resolution */
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowImportingTsExtensions": true,
|
|
|
|
/* Emit */
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"removeComments": true,
|
|
"noEmitOnError": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|