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.

tsconfig.app.json 446B

123456789101112131415161718192021222324
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./out-tsc/app",
  5. "paths": {
  6. "@angular/*": [
  7. "./node_modules/@angular/*"
  8. ],
  9. "@nebular/*": [
  10. "./node_modules/@nebular/*"
  11. ]
  12. }
  13. },
  14. "exclude": [
  15. "test.ts",
  16. "**/*.spec.ts",
  17. "./node_modules/@nebular/**/*.spec.ts",
  18. "./node_modules/rpclibrary/js/**/*"
  19. ],
  20. "include": [
  21. "./src/*.ts",
  22. "./src/**/*.ts",
  23. ]
  24. }