mirror of
https://github.com/Xevion/smart-rgb.git
synced 2025-12-15 14:13:13 -06:00
20 lines
457 B
JSON
20 lines
457 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|