DefinitelyTyped/react-maskedinput/tsconfig.json
Karol Janyst 43751cf91f Add definitions for react-maskedinput (#13430)
* Add definitions for react-maskedinput

* Add tslint.json

* Add required compiler option

* Add flag to compile against typescript 2.1

* Add semicolon, remove ts 2.1 target
2016-12-28 11:09:04 -05:00

22 lines
465 B
JSON

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