tsconfig.json 428 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": "esnext"
  13. },
  14. "files": ["data.ts", "main.ts", "math.ts", "types.ts", "util.ts"]
  15. }