mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
- 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.
24 lines
488 B
JSON
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"
|
|
]
|
|
}
|