123456789101112131415161718192021 |
- {
- "compilerOptions": {
- "target": "ES6",
- "module": "ES6",
- "outDir": "./dist/",
- "sourceMap": true,
- "allowJs": true,
- "strict": true,
- "strictNullChecks": true,
- "noImplicitAny": true,
- "skipLibCheck": true,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "preserveSymlinks": true
- },
- "exclude": [
- "node_modules"
- ]
- }
|