tsconfig.json 458 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "noUnusedParameters": true,
  4. "noImplicitReturns": true,
  5. "noUnusedLocals": true,
  6. "noImplicitAny": true,
  7. "target": "es2018",
  8. "module": "esnext",
  9. "strict": true,
  10. "strictNullChecks": true,
  11. "strictBindCallApply": true,
  12. "strictFunctionTypes": true,
  13. "strictPropertyInitialization": true
  14. },
  15. "include": [
  16. "src/ts/**/*"
  17. ],
  18. "exclude": [
  19. "dist",
  20. "node_modules",
  21. "plugins"
  22. ]
  23. }