tsconfig.app.json 264 B

12345678910111213141516
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./out-tsc/app",
  5. "skipLibCheck": true,
  6. "target": "ES5",
  7. "types": ["node"],
  8. },
  9. "files": [
  10. "src/main.ts",
  11. "src/polyfills.ts"
  12. ],
  13. "include": [
  14. "src/**/*.d.ts"
  15. ]
  16. }