forked from TriplyDB/Yasgui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (29 loc) · 844 Bytes
/
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
26
27
28
29
30
31
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"removeComments": true,
"sourceMap": true,
"listFiles": false,
"outDir": "./build/ts",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@triply/yasr": [ "./packages/yasr/src" ],
"@triply/yasqe": [ "./packages/yasqe/src" ],
"@triply/yasgui-utils": [ "./packages/utils/src" ],
"@triply/yasgui": [ "./packages/yasgui/src" ]
},
"types": ["datatables.net"]
},
"files": ["./packages/yasgui/typings-custom/main.d.ts"],
"include": ["./packages/*/src/**/**/*", "./webpack/**/*", "./test/*", "./packages/yasqe/grammar/tokenizer.ts"],
"compileOnSave": false,
"exclude": [
"**/build/**"
]
}