Files
DefinitelyTyped/types/git-init/tsconfig.json
Santi 5934d79207 🤖 Merge PR #65496 Added definitions for "git-init" (supersedes #65055). by @santi100a
* initial commit for git-init

* modified

* addressed @jakebailey's code review
2023-05-15 12:06:20 -07:00

24 lines
489 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",
"git-init-tests.ts"
]
}