chore: qaq

This commit is contained in:
Innei
2021-07-31 20:17:27 +08:00
parent d13829bcaa
commit 02f8004145
31 changed files with 563 additions and 68 deletions

View File

@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "CommonJS",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
@@ -10,8 +10,17 @@
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"baseUrl": ".",
"incremental": true,
"skipLibCheck": true
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"~": [
"./src"
],
"~/*": [
"./src/*"
]
}
}
}