-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 915 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 915 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
28
{
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"moduleResolution": "bundler",
"lib": ["es2017", "es2016", "dom"],
"allowUnreachableCode": true,
"allowSyntheticDefaultImports": true,
"pretty": true,
"declaration": true,
"skipLibCheck": true,
"outDir": "dist",
"types": [],
"strict": false,
"noImplicitAny": false
},
"files": [
"src/dataTables.fixedColumns.ts",
"src/integrations/fixedColumns.dataTables.ts",
"src/integrations/fixedColumns.bootstrap4.ts",
"src/integrations/fixedColumns.bootstrap5.ts",
"src/integrations/fixedColumns.bootstrap.ts",
"src/integrations/fixedColumns.bulma.ts",
"src/integrations/fixedColumns.foundation.ts",
"src/integrations/fixedColumns.jqueryui.ts",
"src/integrations/fixedColumns.semanticui.ts",
]
}