12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "baseUrl": ".",
- "allowSyntheticDefaultImports": true,
- "declaration": true,
- "noEmit": true,
- "jsx": "react",
- "moduleResolution": "node",
- "module": "es2015",
- "target": "esnext",
- "typeRoots": [
- "node_modules/@types"
- ],
- "lib": [
- "es2015",
- "dom"
- ]
- },
- "include": [
- "./*.tsx"
- ]
- }
|