-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (40 loc) · 1.12 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
{
"compilerOptions": {
"strict": true,
"isolatedModules": true,
"useDefineForClassFields": true,
"noUnusedLocals": true, // Not enabled by default in `strict` mode.
"noUnusedParameters": true, // Not enabled by default in `strict` mode.
"allowJs": false,
"checkJs": false,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2022", "ES2021", "ES2021.String", "DOM"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"moduleResolution": "node",
"module": "CommonJS",
"target": "ES2022",
"noImplicitAny": false,
"removeComments": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"outDir": "./dist",
//"rootDir": "./src/",
// "baseUrl": "./",
"typeRoots": ["node_modules/@types"],
"paths": {
"@/": ["./src/"],
},
},
"include": [
"src/**/*",
],
"exclude": ["node_modules", "test/**/*"]
}