DefinitelyTyped/types/decomment/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 80b5c8a717
feat(decomment): type definition for v0.9 (#42779)
- type definitions
- tests

https://github.com/vitaly-t/decomment#api

Thanks!
2020-03-02 17:47:31 -08:00

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