CSAPP/tsconfig.json

17 lines
337 B
JSON
Raw Normal View History

2025-04-29 18:36:29 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2025-04-29 18:36:29 +08:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"removeComments": true
}
}