DefinitelyTyped/types/transliteration/tsconfig.json
Tony Trinh 4d232442fa feat: Add declarations for andyhu/transliteration (#25542)
* feat(andyhu/transliteration): Add types

* Remove unnecessary module declaration

* Set tsc strictFunctionTypes to true
2018-05-07 10:37:42 -07:00

24 lines
496 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es5"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"transliteration-tests.ts"
]
}