tsconfig.json 712 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "es2017",
  4. "module": "commonjs",
  5. "removeComments": false,
  6. "preserveConstEnums": true,
  7. "moduleResolution": "node",
  8. "experimentalDecorators": true,
  9. "noImplicitAny": false,
  10. "allowSyntheticDefaultImports": true,
  11. "outDir": "lib",
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "strictNullChecks": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "rootDir": ".",
  18. "jsx": "react-jsx",
  19. "allowJs": true,
  20. "resolveJsonModule": true,
  21. "typeRoots": [
  22. "node_modules/@types",
  23. "global.d.ts"
  24. ],
  25. "paths":{
  26. "@/*": ["./src/*"],
  27. }
  28. },
  29. "include": ["./src", "./types"],
  30. "compileOnSave": false
  31. }