| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "noImplicitAny": false,
- "useDefineForClassFields": true,
- "moduleResolution": "node",
- "strict": true,
- "jsx": "preserve",
- "sourceMap": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "importHelpers": true,
- "strictFunctionTypes": false,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "allowJs": false,
- // "incremental": true,
- "lib": [
- "esnext",
- "dom",
- "ES6"
- ]
- },
- "include": [
- "packages",
- "typings"
- ],
- "exclude": [
- "node_modules",
- "**/dist",
- "**/__tests__/**/*",
- "**/test/**",
- "**/tests/**"
- ],
- "files": [],
- "references": [
- {
- "path": "./tsconfig.node.json"
- },
- {
- "path": "./tsconfig.app.json"
- }
- ]
- }
|