-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (50 loc) · 1.33 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
{
"compilerOptions": {
"baseUrl": "src",
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext",
"webworker"
],
"strictNullChecks": false, // проверка на нулевые значения для свойств
"noImplicitAny": false, // проверка на указание типа аргументов
"noImplicitThis": true, // проверка на использование this
"noUnusedLocals": true,
"noImplicitReturns": true,
"noUnusedParameters": true,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"isolatedModules": false,
"strict": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"rootDir": "src",
"resolveJsonModule": true,
"noEmit": false,
"jsx": "preserve",
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"outDir": "build/dist",
"sourceMap": true,
},
"include": [
"src/**/*"
],
"exclude": [
"./src/types",
"node_modules"
]
}