mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* Added Edmonds-Blossom type * updated tsconfig * fixed tsconfig.json * added noEmit * added forceConsistentCasingInFileNames * fixed urls * fixed types * fixed lib * added tests * fixed tests * fixed test * added ts version * fix test
25 lines
529 B
JSON
25 lines
529 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"edmonds-blossom-tests.ts"
|
|
]
|
|
}
|