DeepCodeGeniusWeb-vscode/tsconfig.json
2023-12-13 15:06:05 +08:00

26 lines
355 B
JSON

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