lava-oushudb-dt-sql-parser/test/tsconfig.json
Hayden c6615aecac
build: open ts strict check (#279)
* 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
2024-03-27 19:04:16 +08:00

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": [
"./**/*"
]
}