DeepCodeGeniusWeb-gui/tsconfig.json
2023-12-28 10:04:22 +08:00

20 lines
384 B
JSON

{
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "commonjs",
"target": "ES2020",
"lib": ["ES2020", "es6", "dom"],
"outDir": "./dist",
"sourceMap": true,
"rootDir": "src",
"strict": true,
"jsx": "react",
"noImplicitAny": false,
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["test"]
}