-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 924 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 924 Bytes
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
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2022",
"moduleResolution": "node",
"lib": ["ES2023"],
"declaration": true,
"rootDir": ".",
"outDir": "out",
"sourceMap": true,
"declarationMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"composite": true,
"noImplicitOverride": true,
"allowJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"resolveJsonModule": true,
"types": ["vitest"]
},
"include": ["src", "tst", "tools", "package.json"],
"exclude": ["build", "bundle", "coverage", "out", "node_modules", "assets", "src/services/guard/assets/guard.js"]
}