This repository has been archived by the owner on Aug 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
52 lines (52 loc) · 1.44 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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
// "checkJs": true,
// "esModuleInterop": true,
// "isolatedModules": true,
"module": "ESNext",
// "module": "CommonJS",
"downlevelIteration": true,
// "noEmit": true,
"lib": ["ES5", "ES6", "ES2015.Collection", "ES2015.Iterable", "DOM"],
"paths": {
"@BrainlyAction": ["./controllers/Req/Brainly/Action"],
"@BrainlyReq": ["./controllers/Req/Brainly"],
"@BrainlyReq/*": ["./controllers/Req/Brainly/*"],
"@ServerReq": ["./controllers/Req/Server"],
"@ServerReq/*": ["./controllers/Req/Server/*"],
"@style-guide": ["./components/style-guide"],
"@style-guide/*": ["./components/style-guide/*"],
"@components": ["./components"],
"@components/*": ["./components/*"],
"@root/*": ["./*"]
},
"moduleResolution": "Node",
"resolveJsonModule": true,
"target": "ES6",
"typeRoots": ["node_modules/@types", "./typings"],
"outDir": "../build/"
},
"include": [
"./src/background",
"./src/scripts",
"./src/popup",
"./src/scripts/lib/moment-with-locales.min.js",
"./scripts/updateLangFiles.ts",
"./src/components",
"./src/controllers",
"./src/typings",
"src/helpers"
],
"exclude": [
"node_modules",
"temp/",
"build/",
"dist/",
"./src/configs/",
"./src/styles/",
"./src/scripts/lib"
]
}