DefinitelyTyped/types/jsonpointer/tsconfig.json
Wessel Kuipers 9386b8cc1f Add typings for jsonpointer (#37826)
* Add typings for jsonpointer

* Export jsonpointer functions individually
2019-08-22 11:01:33 -07:00

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