-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
70 lines (70 loc) · 1.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"include": [
//"./src/js/types/*.ts",
"./src/addons/**/*.js",
"./src/js/**/*.js",
//"./src/js/SGNUIKit.loader.js"
//"./src/js/test.js"
],
"compilerOptions": {
"outDir": "./dist/lib",
"declarationDir": "dist/types",
"target": "ES6",
"module": "UMD",
"moduleResolution": "Node",
"strictPropertyInitialization": false,
"esModuleInterop": true,
"lib": [
"ES6",
"DOM"
],
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"allowSyntheticDefaultImports": true,
"removeComments": false,
"allowJs": true,
"checkJs": false,
"strict": false,
"skipLibCheck": true,
"allowUmdGlobalAccess": true,
"alwaysStrict": true,
"useDefineForClassFields": true,
// Generate d.ts files
"declaration": true,
// only output d.ts files
"emitDeclarationOnly": true,
"declarationMap": true,
"types": [],
"typeRoots": [
"./src/types",
"./node_modules/@types/jquery"
]
},
"exclude": [
"node_modules",
"./node_modules",
"./node_modules/*",
"./node_modules/@types/node/index.d.ts",
".backup",
".github",
"build",
"demos",
"dist",
"docs",
"release",
"jQuery",
"src/addons/addons.js",
"src/addons/PrismJS/prism.js",
"src/addons/SGNAtom/SGNAtom.js",
"src/addons/SGNCarousel/SGNCarousel.js",
"src/addons/SGNFullPage/SGNFullPage.js",
"src/addons/DataTables",
"src/js/addons/addons.js",
"src/js/SGNUIKit.loader.js",
"src/js/app-free.cjs",
"src/js/app-pro.cjs",
"src/js/components/components.js",
"src/js/components/forms/forms.js"
]
}