-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
23 lines (23 loc) · 849 Bytes
/
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
{
"compilerOptions": {
"target": "es2022",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"outDir": "./dist",
"lib": ["es2022"],
"declaration": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@color-utils/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}