generated from latipun7/webcomponents-webpack-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (45 loc) · 1.18 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
{
"compilerOptions": {
"checkJs": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "CommonJS",
"noEmit": true,
"removeComments": true,
"sourceMap": true,
"target": "ES2015",
"strict": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"moduleResolution": "node",
"paths": {
"assets/*": ["src/assets/*"],
"components/*": ["src/components/*"],
"lib/*": ["src/lib/*"],
"pages/*": ["src/pages/*"],
"styles/*": ["src/styles/*"],
"test.utils": ["tests/test.utils.ts"],
"utils": ["src/lib/aladine-utils.ts"]
},
"typeRoots": ["./node_modules/@types", "./typings"],
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"newLine": "lf",
"resolveJsonModule": true,
"skipLibCheck": true
},
"files": [
"node_modules/expect-playwright/global.d.ts",
"node_modules/jest-playwright-preset/types/global.d.ts"
],
"include": [
"configs/**/*",
"src/**/*",
"tests/**/*",
"typings/**/*",
"**/*.config.*"
]
}