mark-mark/tsconfig.json

19 lines
449 B
JSON
Raw Normal View History

2025-06-13 21:00:15 +00:00
{
"compilerOptions": {
2025-06-13 21:22:31 +00:00
"target": "es2016",
2025-06-13 21:27:35 +00:00
"module": "nodenext",
2025-06-13 21:00:15 +00:00
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2025-06-13 21:22:31 +00:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2025-06-13 21:00:15 +00:00
"skipLibCheck": true,
"lib": ["ESNext"]
},
"include": ["src"],
"exclude": ["node_modules"]
}