DefinitelyTyped/types/halogenium/tsconfig.json
Weslley Nascimento Rocha 01fd2924e6 adding types to halogenium package (#38804)
* adding types to halogenium package

* Update index.d.ts

* fix: using class types

* fix: update to no generic type
2019-10-02 09:05:14 -07:00

28 lines
582 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react"
},
"files": [
"index.d.ts",
"test/clip-loader.tsx",
"test/fade-loader.tsx",
"test/pacman-loader.tsx",
"test/rotate-loader.tsx"
]
}