mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* (lib) initial source for @types/apimocker
* (test) typical, documented use case
* (cleanup) prep for PR
* (apimocker) updates
* (apimocker) fixed sample code
* (apimocker:refactor) fixes from linting notes
* (apimocker:check) generated with dts-gen & tweaked
* (apimocker:build) wip to fix CI build
* (apimocker:build) fixed header formatting
* (apimocker:build) removed .gitignore
* (apimocker:build) tweaks
* (apimocker:wip) tslint.json issues
* (apimocker:build) added package.json & ts3.1/*
* (apimocker:refactor) tweaks to fix build
* (apimocker:build) removed offending test
* (apimocker:build) Removed unused file
* (apimocker:refactor) more build fixes 😭
* (feedback) cleanup comments & removed package.json
* (feedback) more tweaks from review notes
20 lines
446 B
JSON
20 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"baseUrl": "../",
|
|
"typeRoots": ["../"],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"apimocker-tests.ts"
|
|
]
|
|
}
|