DefinitelyTyped/types/cxs/tsconfig.json
Daniel Eden 33a94d5028
Add type definitions for cxs-css/cxs (#45875)
* Add type definitions for cxs-css/cxs

* Address linter/CI issues

* Fix importing and reintroduce ts-expect-error

* Fix tsconfig

* Fix import path in tests

* Omit ts-expect-error

* Try to fix compile error

* Use ts-expect-error instead of $ExpectError

* Remove directive in component

* Remove error-causing callsites

* Prefer interface over props

* Turn off export to fix lint error
2020-07-06 12:50:46 -07:00

18 lines
442 B
JSON

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