mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add antlr4 definitions/types * Update the tsconfig.json for the antlr4 types * Update the tsconfig.json for the antlr4 types. Use files instead of includes. * Remove antlr4-test.ts to antlr4-tests.ts, for the antlr4 types * Remove the c-parser.ts, for the antlr4 types. As this is not allowed in the antlr4-test.ts * Fix antlr4 types test lint failure * Update the linting and the tslint.json * Update the tslint.json, for antlr4 types
40 lines
943 B
JSON
40 lines
943 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"error/ErrorListener.d.ts",
|
|
"error/Errors.d.ts",
|
|
"error/ErrorStrategy.d.ts",
|
|
"error/index.d.ts",
|
|
"tree/Tree.d.ts",
|
|
"antlr4-tests.ts",
|
|
"BufferedTokenStream.d.ts",
|
|
"CommonTokenStream.d.ts",
|
|
"index.d.ts",
|
|
"InputStream.d.ts",
|
|
"IntervalSet.d.ts",
|
|
"Lexer.d.ts",
|
|
"Parser.d.ts",
|
|
"ParserRuleContext.d.ts",
|
|
"Recognizer.d.ts",
|
|
"RuleContext.d.ts",
|
|
"Token.d.ts"
|
|
]
|
|
}
|