12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "compilerOptions": {
- "target": "es6",
- "lib": [
- "dom",
- "dom.iterable",
- "esnext"
- ],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": false,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "baseUrl": ".",
- "paths": {
- "@/*": [
- "./src/*"
- ],
- "@@/*": [
- "./*"
- ]
- }
- },
- "include": [
- "src"
- ]
- }
|