DefinitelyTyped/types/svg-intersections/tsconfig.json
William Bergeron-Drouin eb680b04ff Added types for svg-intersections (#39899)
* Generated svg-intersections files using npx

* Added base typings for shape method with conditional second argument type

* Added missing types in SvgProperties

* Added basic Shape interface

* Added types for intersect function

* Refactored intersection to interface and added typings to Matrix2D

* Linted index.d.ts

* Added line test

* Added tests for rect, circle, ellipse & polygon

* Added test for path

* Rectangle rx&ry should be optional

* Added intersections test

* Replaced unnecessary typeof with generic type
2019-11-01 15:01:47 -07:00

24 lines
498 B
JSON

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