1234567891011121314151617181920212223242526272829303132 |
- {
- "compilerOptions": {
- "allowJs": true,
- "strict": true,
- "isolatedModules": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "strictPropertyInitialization": false,
- "noEmit": true,
- "module": "esnext",
- "moduleResolution": "node",
- "sourceMap": true,
- "declaration": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "noImplicitAny": true,
- "noEmitOnError": true,
- "noUnusedLocals": true,
- "strictNullChecks": true,
- "resolveJsonModule": true,
- "experimentalDecorators": true,
- "jsx": "react",
- "target": "es5",
- "lib": [
- "dom",
- "es2015"
- ]
- },
- "include": [
- "src"
- ]
- }
|