12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "esModuleInterop": true,
- "strictNullChecks": false,
- "allowSyntheticDefaultImports": true,
- "sourceMap": true,
- "baseUrl": ".",
- "types": ["webpack-env", "jest"],
- "paths": {
- "@/*": ["src/*"]
- },
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
- },
- "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
- "exclude": ["node_modules"],
- "typedocOptions": {
- "entryPoints": ["src/public-api.ts"],
- "includes": "src/",
- "pretty": true,
- "readme": "README.md",
- "excludeProtected": false,
- "excludeExternals": true,
- "excludePrivate": true,
- "out": "./docs/api"
- }
- }
|