DefinitelyTyped/types/langmap/tsconfig.json
Remco Haszing 2c8e8d096a
🤖 Merge PR #47014 Enhance langmap types by @remcohaszing
- Types are exported in the index, as `types.d.ts` doesn’t map to an existing JavaScript file.
- `esModuleInterop` was removed from `tsconfig.json` for correctness.
- Tests were changed not to use `esModuleInterop` and to use `$ExpectType` annotations.
2020-08-26 15:39:13 -04:00

24 lines
488 B
JSON

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