tsconfig.json 421 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "alwaysStrict": true,
  4. "noEmitOnError": true,
  5. "noFallthroughCasesInSwitch": true,
  6. "noImplicitAny": true,
  7. "noImplicitReturns": true,
  8. "noImplicitThis": true,
  9. "noUnusedLocals": true,
  10. "noUnusedParameters": true,
  11. "strict": true,
  12. "target": "ES2019"
  13. },
  14. "files": ["lib.ts", "main.ts", "types.ts", "mechanics.ts"]
  15. }