mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Create tslint.json * Moved v1 types to specified version folder. * Created types for react-i18next. * Exported as global UMD module. * Added more tests. * Fixed dtslint errors. * Removed @KostyaEsmukov from the authors list. * Added addition data for Trans component. * Added typescript 2.3 support. * Added generic TKey for translate method. * Removed path map to i18next/v2. * Fixed dtslint error. * Fixed ts error.
31 lines
705 B
JSON
31 lines
705 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"experimentalDecorators": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"test/react-i18next-tests.tsx",
|
|
"src/I18nextProvider.d.ts",
|
|
"src/interpolate.d.ts",
|
|
"src/loadNamespaces.d.ts",
|
|
"src/trans.d.ts",
|
|
"src/translate.d.ts"
|
|
]
|
|
}
|