We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 974343a commit 009d778Copy full SHA for 009d778
package.json
@@ -16,7 +16,7 @@
16
"url": "https://github.com/lstreckeisen/context-mapper-language-server.git"
17
},
18
"scripts": {
19
- "build": "tsc -b tsconfig.json",
+ "build": "tsc -b tsconfig.src.json",
20
"lint": "eslint",
21
"lint:fix": "eslint --fix",
22
"langium:generate": "langium generate",
tsconfig.src.json
@@ -0,0 +1,10 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "noEmit": false,
5
+ "rootDir": "src",
6
+ },
7
+ "include": [
8
+ "src/**/*.ts"
9
+ ]
10
+}
0 commit comments