DefinitelyTyped/types/urlencode/tsconfig.json
kimcoder 6dbe9483fc types for 'urlencode' package (#31715)
* first commit

* fixed tsconfig, modify lint error

* declare urlencode function ad namespace

* [@types/urlencode] modify export 

export default urlencode -> exrpot = urlencode;

* esModuleInterop, allowSyntheticDefaultImports
add to tsconfig

* exprot default urlencode

* modify export =
2019-01-07 08:31:28 -08:00

26 lines
569 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"urlencode-tests.ts"
]
}