forked from Matdata-eu/Yasgui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 805 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 805 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": {
"@matdata/yasgui": ["./packages/yasgui/src"],
"@matdata/yasgui-utils": ["./packages/utils/src"],
"@matdata/yasqe": ["./packages/yasqe/src"],
"@matdata/yasr": ["./packages/yasr/src"]
}
},
"files": ["./packages/yasgui/typings-custom/main.d.ts"],
"include": ["./packages/*/src/**/**/*", "./test/*", "./packages/yasqe/grammar/tokenizer.ts"],
"compileOnSave": false,
"exclude": ["**/build/**"]
}