-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 552 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 552 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es2021",
"module": "es2022",
"lib": ["es2021"],
"declaration": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["dist", "node_modules", "tests", "vitest.config.ts"]
}