mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add type definitions for 'php-serialize' * Modifying tscconfig.json to the guidelines * Add missing type definitions header * Add test file into tsconfig * Fix typing and remove unused variable declaration * Fix optional function parameters * Add empty line for linter * Update types/php-serialize/index.d.ts Co-Authored-By: Dmitry Demensky <10235949+demensky@users.noreply.github.com> * Update types/php-serialize/index.d.ts Co-Authored-By: Dmitry Demensky <10235949+demensky@users.noreply.github.com> * Update types/php-serialize/index.d.ts Co-Authored-By: Dmitry Demensky <10235949+demensky@users.noreply.github.com> * Update index.d.ts * Update tsconfig.json * Revert tsconfig.json chnages * Add reference types header for node Co-authored-by: Dmitry Demensky <10235949+demensky@users.noreply.github.com>
25 lines
519 B
JSON
25 lines
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"php-serialize-tests.ts"
|
|
]
|
|
}
|