UNPKG
@kwalox/create-node-app
Version:
latest (3.0.0)
3.0.0
2.1.0
2.0.0
1.1.0
1.0.1
1.0.0
CLI command to bootstrap Node project
github.com/KwalOx/create-node-app
KwalOx/create-node-app
@kwalox/create-node-app
/
templates
/
typescript
/
tsconfig.json
16 lines
(15 loc)
•
278 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions"
:
{
"target"
:
"es2016"
,
"module"
:
"CommonJS"
,
"rootDir"
:
"./src"
,
"outDir"
:
"./dist"
,
"esModuleInterop"
:
true
,
"forceConsistentCasingInFileNames"
:
true
,
"strict"
:
true
,
"skipLibCheck"
:
true
,
}
,
"include"
:
[
"src/**/*"
]
}