12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["dom", "dom.iterable", "esnext"],
- "strictNullChecks": true,
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- "experimentalDecorators": true,
- "allowImportingTsExtensions": true,
- "types": ["vitest/globals"]
- },
- "extends": "./tsconfig.paths.json",
- "ts-node": {
- "transpileOnly": true,
- "files": true,
- "esm": true,
- "swc": true,
- "compilerOptions": {}
- },
- "exclude": ["node_modules", "cypress.config.ts"],
- "include": [
- "packages/app",
- "packages/webpack/bin",
- "packages/webpack/scripts",
- "packages/webpack/config",
- "packages/webpack/detect-port-alt.d.ts",
- ".eslintrc.cjs",
- "commitlint.config.cjs",
- "vitest.config.ts",
- "vitest.workspace.ts"
- ]
- }
|