mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat: Add `prefixfree` * chore(prefixfree): Require TypeScript 2.8 * fix(prefixfree): Enable `strictNullChecks` Co-Authored-By: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
25 lines
381 B
JSON
25 lines
381 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"dom",
|
|
"es5"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"prefixfree-tests.ts"
|
|
]
|
|
}
|