1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "outDir": "lib",
- "rootDir": "src",
- "allowSyntheticDefaultImports": true,
- "composite": true,
- "declaration": true,
- "esModuleInterop": true,
- "incremental": true,
- "jsx": "react",
- "lib": ["dom", "es2015"],
- "module": "commonjs",
- "moduleResolution": "node",
- "noEmitOnError": true,
- "noImplicitAny": true,
- "noUnusedLocals": true,
- "preserveWatchOutput": true,
- "resolveJsonModule": true,
- "target": "es2015",
- "types": []
- },
- "include": ["src/*"]
- }
|