2025-10-06 14:07:33 +08:00

31 lines
588 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"experimentalDecorators": true,
"ignoreDeprecations": "6.0",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
},
"exclude": [
"node_modules"
]
}