|
12345678910111213141516171819 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "es5",
- "lib": ["es6", "dom"],
- "jsx": "react",
- "moduleResolution": "node",
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "noEmit": true,
- "baseUrl": ".",
- "paths": { "react-i18next": ["./src"] },
-
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true
- },
- "include": ["./src/**/*", "./test/**/*"],
- "exclude": ["test/typescript/nonEsModuleInterop/**/*.ts"]
- }
|