c6615aecac
* feat: no check lib dir * feat: open strict check to src dir * test: update test tsconfig.json * feat: remove any type * feat: do not export AbstractParseTreeVisitor * feat: export StmtContextType as enum * build: improve antlr4 script
21 lines
503 B
JSON
21 lines
503 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "../",
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": false,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"test/*": ["test/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*"
|
|
]
|
|
} |