rices/tsconfig.json
2024-12-26 00:58:36 +01:00

18 lines
No EOL
451 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"exclude": ["node_modules", "dist", "test"]
}