You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "es2020",
  4. "module": "es6",
  5. "lib": ["dom", "es2020"],
  6. "outDir": "./build",
  7. "sourceMap": true,
  8. "allowJs": true,
  9. "strict": true,
  10. "strictNullChecks": true,
  11. "noImplicitAny": true,
  12. "skipLibCheck": true,
  13. "moduleResolution": "node",
  14. "esModuleInterop": true,
  15. "isolatedModules": true,
  16. "allowSyntheticDefaultImports": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "preserveSymlinks": true
  19. },
  20. "include": [
  21. "src/**/*"
  22. ]
  23. }