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
40 lines
894 B
JSON
40 lines
894 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": false,
|
|
"allowJs":true,
|
|
"target": "es6",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"typeRoots": [
|
|
"node",
|
|
"node_modules/@types",
|
|
]
|
|
},
|
|
"isolatedModules": true,
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"jest"
|
|
]
|
|
}
|
|
} |