Files
DefinitelyTyped/types/redom/tsconfig.json
Rauli L a97f575766 Add type definitions for RE:DOM 3.6 (#20469)
Introduce new type definition package into repository which adds type
definitions for a library called RE:DOM. These type definitions are made
against RE:DOM version 3.6.2.
2017-10-10 13:00:22 -07:00

26 lines
530 B
JSON

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