27 lines
397 B
JSON
Raw Permalink Normal View History

2023-04-14 08:05:41 +08:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"lib": [
"ES2020",
"es6",
"dom"
2023-04-14 08:05:41 +08:00
],
"outDir": "./dist",
2023-04-14 08:05:41 +08:00
"sourceMap": true,
"rootDir": "src",
"strict": true,
"jsx": "react",
"esModuleInterop": true,
"noImplicitAny": false,
"paths": {
"@/*": [
"./src/*"
]
2024-07-08 22:20:59 +08:00
},
"experimentalDecorators": true
2023-05-31 16:10:53 +08:00
},
"exclude": [
"test","gui","tools"
]
}