DefinitelyTyped/types/estree-jsx/tsconfig.json
Tony Ross 922e092f5e Add types for JSX extensions to ESTree AST (#39215)
Declare JSX types and export a modified `Node` type containing
the union of `Node` from `@types/estree` plus JSX node types.

Like `@types/estree` this is a types-only package to aid consuming
ASTs created by various JavaScript parsers used in tooling.
2019-10-17 15:33:41 -07:00

24 lines
491 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",
"estree-jsx-tests.ts"
]
}