tsconfig.json 438 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "lib": [
  4. "DOM",
  5. "WebWorker"
  6. ],
  7. "target": "ES2016",
  8. "allowSyntheticDefaultImports": true,
  9. "experimentalDecorators": true,
  10. "emitDecoratorMetadata": true,
  11. "moduleResolution": "node",
  12. "skipLibCheck": true,
  13. "strict": true
  14. },
  15. "include": [
  16. "src/**/*"
  17. ],
  18. "exclude": [
  19. "node_modules"
  20. ]
  21. }