-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig-browser.json
44 lines (44 loc) · 1010 Bytes
/
tsconfig-browser.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
{
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
"module": "esnext",
"target": "es6",
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"types": [
"webpack-env",
"jest"
],
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"sourceMap": true,
"moduleResolution": "Node",
"baseUrl": ".",
"paths": {
"types/*": [
"src/types/*"
],
"schemas": [
"src/types/schemas/index"
],
"@i18n/*": [
"src/helpers/i18n/*"
]
}
},
"include": [
"src/dashboard/**/*.ts",
"src/types/**/*.ts",
"**/*.vue",
"node_modules/@nodecg/types/augment-window.d.ts"
],
"exclude": [
"**/jest.config.ts",
"**/__mocks__/**/*.ts"
]
}