DefinitelyTyped/types/struct/tsconfig.json
Ben Allfree a312d33554 Add struct definitions (#40073)
* Add struct definitions

* Struct generics
2019-11-05 09:58:13 -08:00

24 lines
487 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",
"struct-tests.ts"
]
}