Skip to content

Commit

Permalink
Uses incremental compilations and doesn't check semantic analysis file
Browse files Browse the repository at this point in the history
  • Loading branch information
ncordon committed Oct 19, 2023
1 parent d6c654b commit 5f422dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/language-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
},
"scripts": {
"gen-parser": "antlr4 -Dlanguage=TypeScript -visitor src/antlr-grammar/CypherParser.g4 src/antlr-grammar/CypherLexer.g4 -o src/generated-parser/ -Xexact-output-dir",
"postinstall": "npm run gen-parser",
"build": "npm run gen-parser && concurrently \"npm:build-esm\" \"npm:build-commonjs\"",
"build-esm": "tsc --module esnext --outDir esm",
"build-commonjs": "tsc --module commonjs --outDir dist",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-nocheck
"use strict";
export function semanticAnalysis(queryText){
var main;
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"skipLibCheck": true,
"sourceMap": true,
"target": "ESNext",
"outDir": "dist"
"outDir": "dist",
"incremental": false
},
"exclude": ["node_modules", ".vscode-test"]
}

0 comments on commit 5f422dc

Please sign in to comment.