mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 17:00:32 +00:00
On branch development Changes to be committed: modified: .eslintrc modified: esbuild.config.mjs modified: main.ts modified: package.json modified: pnpm-lock.yaml modified: tsconfig.json
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options */
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"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,
|
|
|
|
/* Paths */
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|