converts irc logs to html files that look like discord
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
460 B

2 years ago
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "noEmitOnError": true,
  7. "lib": ["es2017", "dom"],
  8. "strict": true,
  9. "esModuleInterop": false,
  10. "outDir": ".out-tsc",
  11. "rootDir": "./",
  12. "jsx": "react",
  13. "reactNamespace": "JSX",
  14. }
  15. ,
  16. "include": ["./src/**/*.ts", "./src/**/*.tsx"]
  17. }