tsconfig.json 348 B

12345678910111213141516
  1. {
  2. "include": [
  3. "./src/**/*"
  4. ],
  5. "compilerOptions": {
  6. "moduleResolution": "Node",
  7. "target": "ES6",
  8. "module": "ES2015",
  9. "lib": ["dom","ES2015"],
  10. "outDir": "./dist",
  11. "strict": true,
  12. "noImplicitAny": false,
  13. "noImplicitThis": false,
  14. "noEmitOnError": true
  15. }
  16. }