forked from DataTables/SearchBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 819 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
{
"compilerOptions": {
"target": "ES3",
"module": "ES6",
"moduleResolution": "Node",
"lib": ["es2017", "es2016", "dom"],
"allowUnreachableCode": true,
"allowSyntheticDefaultImports": true,
"pretty": true,
"declaration": true
},
"exclude": [
"./node_modules/**/*"
],
"files": [
"src/searchBuilder.ts",
"src/index.ts",
"src/criteria.ts",
"src/group.ts",
"src/searchBuilder.bootstrap.ts",
"src/searchBuilder.bootstrap4.ts",
"src/searchBuilder.bootstrap5.ts",
"src/searchBuilder.bulma.ts",
"src/searchBuilder.dataTables.ts",
"src/searchBuilder.foundation.ts",
"src/searchBuilder.jqueryui.ts",
"src/searchBuilder.semanticui.ts",
]
}