DefinitelyTyped/types/hexo-util/tsconfig.json
segayuu daf0c80417 [@types/hexo-util] Create @types/hexo-util (#27091)
* create hexo-util files (from dts-gen)

* first implament

* fix types

* simple test

* append setting: strictFunctionTypes

* test strict check

* Pattern Generic class

* Add definition
- fix lint
2018-07-06 09:45:51 -07:00

24 lines
490 B
JSON

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