20 lines
491 B
JSON
20 lines
491 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": { "i18next": ["./index.d.ts"] },
|
|
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["./index.d.ts", "./test/**/*.ts*"],
|
|
"exclude": ["test/typescript/nonEsModuleInterop/**/*.ts"]
|
|
}
|