Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강동현
/
nodejs-game
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
강동현
2021-06-03 12:26:18 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8154123485c2681709cae1cc22e61c8c6b23acd4
81541234
1 parent
c054bae2
빌드를 위한 서버 tsconfig.json 수정
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
10 deletions
.gitignore
common/tsconfig.json
server/package.json
server/tsconfig.json
.gitignore
View file @
8154123
...
...
@@ -23,4 +23,6 @@ yarn-debug.log*
yarn-error.log*
# use css framework
web/src/index.css
\ No newline at end of file
web/src/index.css
dist
\ No newline at end of file
...
...
common/tsconfig.json
View file @
8154123
...
...
@@ -2,9 +2,9 @@
"compilerOptions"
:
{
"target"
:
"es5"
,
"module"
:
"commonjs"
,
"outDir"
:
"./dist"
,
"declaration"
:
true
,
"declarationMap"
:
true
,
"rootDir"
:
"."
,
"composite"
:
true
,
"strict"
:
true
,
"esModuleInterop"
:
true
...
...
server/package.json
View file @
8154123
...
...
@@ -22,6 +22,7 @@
},
"scripts"
:
{
"start"
:
"nodemon index.ts"
,
"test"
:
"mocha -r ts-node/register --require mocha-steps ./**/*.test.ts"
"test"
:
"mocha -r ts-node/register --require mocha-steps ./**/*.test.ts"
,
"build"
:
"tsc -b -v"
}
}
...
...
server/tsconfig.json
View file @
8154123
...
...
@@ -14,8 +14,8 @@
//
"declarationMap"
:
true
,
/*
Generates
a
sourcemap
for
each
corresponding
'.d.ts'
file.
*/
//
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
//
"outFile"
:
"./"
,
/*
Concatenate
and
emit
output
to
single
file.
*/
//
"outDir"
:
"./"
,
/*
Redirect
output
structure
to
the
directory.
*/
//
"rootDir"
:
"./"
,
/*
Specify
the
root
directory
of
input
files.
Use
to
control
the
output
directory
structure
with
--outDir.
*/
"outDir"
:
"./dist"
/*
Redirect
output
structure
to
the
directory.
*/
,
"rootDir"
:
"../"
/*
Specify
the
root
directory
of
input
files.
Use
to
control
the
output
directory
structure
with
--outDir.
*/
,
//
"composite"
:
true
,
/*
Enable
project
compilation
*/
//
"tsBuildInfoFile"
:
"./"
,
/*
Specify
file
to
store
incremental
compilation
information
*/
//
"removeComments"
:
true
,
/*
Do
not
emit
comments
to
output.
*/
...
...
@@ -68,9 +68,5 @@
"skipLibCheck"
:
true
/*
Skip
type
checking
of
declaration
files.
*/
,
"forceConsistentCasingInFileNames"
:
true
/*
Disallow
inconsistently-cased
references
to
the
same
file.
*/
},
"references"
:
[
{
"path"
:
"../common"
}
]
"include"
:
[
"../common/**/*"
]
}
...
...
Please
register
or
login
to post a comment