-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 819 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 819 Bytes
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
26
27
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"removeComments": true,
"sourceMap": true,
"listFiles": false,
"outDir": "./build/ts",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@zazuko/yasgui": ["./packages/yasgui/src"],
"@zazuko/yasgui-utils": ["./packages/utils/src"],
"@zazuko/yasqe": ["./packages/yasqe/src"],
"@zazuko/yasr": ["./packages/yasr/src"]
}
},
"files": ["./packages/yasgui/typings-custom/main.d.ts"],
"include": ["./packages/*/src/**/**/*", "./webpack/**/*", "./test/*", "./packages/yasqe/grammar/tokenizer.ts"],
"compileOnSave": false,
"exclude": ["**/build/**"]
}