forked from cucumber/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
25 lines (25 loc) · 1.22 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@cucumber/messages": ["messages/javascript"],
"@cucumber/message-streams": ["message-streams/javascript"],
"@cucumber/gherkin": ["gherkin/javascript/src/index.ts"],
"@cucumber/gherkin-streams": ["gherkin-streams/javascript/src/index.ts"],
"@cucumber/gherkin-utils": ["gherkin-utils/javascript/src/index.ts"],
"@cucumber/tag-expressions": ["tag-expressions/javascript/src/index.ts"],
"@cucumber/create-meta": ["create-meta/javascript/src/index.ts"],
"@cucumber/fake-cucumber": ["fake-cucumber/javascript/src/index.ts"],
"@cucumber/query": ["query/javascript/src/index.ts"],
"@cucumber/compatibility-kit": ["compatibility-kit/javascript/src/index.ts"],
"@cucumber/react": ["react/javascript/src/index.ts"],
"@cucumber/suggest": ["suggest/javascript/src/index.ts"],
"@cucumber/language-server": ["language-service/javascript/src/index.ts"],
"@cucumber/language-server": ["language-server/javascript/src/index.ts"],
"@cucumber/monaco": ["monaco/javascript/src/index.ts"],
"@cucumber/vscode": ["vscode/javascript/src/index.ts"]
},
"noEmit": true
}
}