tsconfig.json 460 B

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