123456789101112131415161718192021 |
- {
- "include": [
- "src/*"
- ],
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["ESNext", "DOM"],
- "module": "commonJS",
- "jsx": "react",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "rootDir": "./src/",
- "paths": {
- "./*": ["./*", "./src/*"]
- }
- },
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|