tsconfig.json 501 B

123456789101112131415161718
  1. {
  2. "include": ["src/**/*.ts"],
  3. "exclude": ["dist", "node_modules"],
  4. "compilerOptions": {
  5. "module": "commonjs",
  6. "rootDirs": ["."],
  7. "outDir": "dist/src",
  8. "strict": true,
  9. "alwaysStrict": true,
  10. "noImplicitAny": true,
  11. "strictNullChecks": true,
  12. "typeRoots": ["./node_modules/@types"],
  13. "skipLibCheck": true, // Temp workaround for Duplicate identifier tsc errors,
  14. "removeComments": false,
  15. "esModuleInterop": true,
  16. "lib": ["es2015", "es2017.string"]
  17. }
  18. }