tsconfig.json 478 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "CommonJS",
  5. "moduleResolution": "Node",
  6. "lib": ["es2018", "ES6", "DOM"],
  7. "esModuleInterop": true,
  8. "declaration": true,
  9. "outDir": "./lib",
  10. "importHelpers": true,
  11. "skipLibCheck": true,
  12. "rootDir": "./src",
  13. "baseUrl": "./src",
  14. "noUnusedLocals": false,
  15. "paths": {
  16. "@/*": ["*"]
  17. }
  18. },
  19. "include": ["./src/"],
  20. "exclude": ["./spec/", "./node_modules/", "./dist/"]
  21. }