Files
discordeno/examples/beginner/tsconfig.json
Fleny 1b8f85ae72 Rename starter to beginner
So now it is minimal (main branch) -> beginner
2024-06-08 17:06:18 +02:00

15 lines
318 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"moduleResolution": "node",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"incremental": true
}
}