DefinitelyTyped/types/is-relative-path/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 60ff970f67
feat(is-relative-path): type definition for v2 (#42780)
- type definitions
- tests

https://github.com/mrjoelkemp/is-relative-path#usage

Thanks!
2020-03-02 17:48:33 -08:00

24 lines
497 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",
"is-relative-path-tests.ts"
]
}