tsconfig.json 681 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "root": true,
  3. "compilerOptions": {
  4. "noFallthroughCasesInSwitch": true,
  5. "noUnusedParameters": true,
  6. "noImplicitReturns": true,
  7. "noUnusedLocals": true,
  8. "noImplicitAny": true,
  9. "module": "esnext",
  10. "alwaysStrict": true,
  11. "strict": true,
  12. "strictNullChecks": true,
  13. "strictBindCallApply": true,
  14. "strictFunctionTypes": true,
  15. "strictPropertyInitialization": true,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@components/*": ["src/html/components/*"],
  19. },
  20. /* Language and Environment */
  21. "target": "es6",
  22. "lib": ["es2018", "DOM"],
  23. },
  24. "include": [
  25. "src/ts/**/*"
  26. ],
  27. "exclude": [
  28. "dist",
  29. "node_modules",
  30. ]
  31. }