-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
54 lines (54 loc) · 2.77 KB
/
test.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
{
"compilerOptions": {
"rootDir": "./",
"baseUrl": "../..",
"outDir": "../../dist",
"target": "es2022",
"module": "esnext",
"moduleResolution": "node10",
"sourceMap": false,
"removeComments": false,
"strict": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true,
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"types": [
"node"
],
"paths": {
"@/*": [
"src/*"
],
"@components/*": [
"src/components/*"
]
},
"composite": true,
"declaration": true,
"preserveConstEnums": true,
"incremental": true,
"useDefineForClassFields": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": true
},
"files": [
"./src/index.ts"
],
"include": [
"src/**/*"
]
}