25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
484 B

  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es5",
  5. "lib": ["es6", "dom"],
  6. "jsx": "react",
  7. "moduleResolution": "node",
  8. "forceConsistentCasingInFileNames": true,
  9. "strict": true,
  10. "noEmit": true,
  11. "baseUrl": ".",
  12. "paths": { "react-i18next": ["./src"] },
  13. "esModuleInterop": true,
  14. "allowSyntheticDefaultImports": true
  15. },
  16. "include": ["./src/**/*", "./test/**/*"],
  17. "exclude": ["test/typescript/nonEsModuleInterop/**/*.ts"]
  18. }