일부 수정

This commit is contained in:
2023-08-04 16:08:48 +00:00
parent 58562e2c99
commit 0622c534bc
2 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev:client": "vite",
"dev:server": "nodemon ",
"dev:server": "nodemon --watch 'src/**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' server/index.ts",
"dev": "concurrently 'npm:dev:client' 'npm:dev:server'",
"build": "run-p build:client build:server",
"build:client": "run-p type-check build-only:client",
+13 -2
View File
@@ -6,6 +6,17 @@
},
{
"path": "./tsconfig.app.json"
}
]
},
],
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
}
}