| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "include": [
- "vite.config.*",
- "vitest.config.*",
- "cypress.config.*",
- "playwright.config.*",
- "build/**/*.ts",
- "config/**/*.ts",
- "settings/**/*.ts",
- "vite.config.ts",
- "rsbuild.config.ts"
- ],
- "compilerOptions": {
- "composite": true,
- "module": "ESNext",
- "lib": ["ES2021"],
- "types": ["node"],
- "allowSyntheticDefaultImports": true,
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "moduleDetection": "force",
- "noEmit": true,
- /* Linting */
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noFallthroughCasesInSwitch": true
- }
- }
|