star-trek-cc/tsconfig.json

15 lines
319 B
JSON
Raw Normal View History

2025-03-25 10:08:41 -04:00
{
"compilerOptions": {
"target": "ES2017",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2017", "DOM"]
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
2025-03-25 10:08:41 -04:00
}