DefinitelyTyped/types/parse-full-name/tsconfig.json
Nathan Anderson 004c92f2dc
Added types for parse-full-name (#43502)
* added the parse-full-name types

* updated module to not have exported functions and types

* exported the guts of the types as opposed to a single module

* fixed some tests and added a comment for only supporting typescript 3.0

* whoops had a ' that shouldn't have been there

Co-authored-by: n8 <n8@dwell.management>
2020-04-01 13:06:07 -07:00

24 lines
496 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",
"parse-full-name-tests.ts"
]
}