tsconfig.json 326 B

12345678910111213
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "declaration": true,
  6. "strict": true,
  7. "alwaysStrict": true,
  8. "noImplicitAny": true,
  9. "strictNullChecks": true,
  10. "skipLibCheck": true, // Temp workaround for Duplicate identifier tsc errors,
  11. "removeComments": false
  12. }
  13. }