tsconfig.json 322 B

1234567891011121314
  1. {
  2. "extends": "../../../tsconfigbase.json",
  3. "compilerOptions": {
  4. "lib": ["es6", "dom", "ES2017"],
  5. "allowJs": false,
  6. "rootDir": "../",
  7. "outDir": "dist",
  8. "noImplicitReturns": true,
  9. "noImplicitThis": true,
  10. "skipLibCheck": true
  11. },
  12. "include": ["../src/**/*"],
  13. "exclude": ["node_modules"]
  14. }