Skip to content

Commit a3e70ed

Browse files
committed
building env
1 parent 265c822 commit a3e70ed

31 files changed

+18353
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist
6.24 MB
Binary file not shown.

config/base.ts.config.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"compilerOptions": {
3+
"allowUnreachableCode": false,
4+
"allowUnusedLabels": false,
5+
"alwaysStrict": true,
6+
"exactOptionalPropertyTypes": false,
7+
"noFallthroughCasesInSwitch": true,
8+
"noImplicitAny": true,
9+
"noImplicitOverride": true,
10+
"noImplicitReturns": true,
11+
"noImplicitThis": true,
12+
"noPropertyAccessFromIndexSignature": true,
13+
"noUncheckedIndexedAccess": true,
14+
"noUnusedLocals": true,
15+
"noUnusedParameters": true,
16+
"strict": true,
17+
"strictBindCallApply": true,
18+
"strictFunctionTypes": true,
19+
"strictNullChecks": true,
20+
"strictPropertyInitialization": true,
21+
"useUnknownInCatchVariables": true,
22+
"removeComments": true,
23+
24+
"emitDecoratorMetadata": true,
25+
"experimentalDecorators": true,
26+
27+
"module": "commonjs",
28+
29+
"declaration": true,
30+
31+
"noLib": false,
32+
33+
"target": "es6",
34+
35+
"sourceMap": true,
36+
37+
"allowSyntheticDefaultImports": true,
38+
"moduleResolution": "node",
39+
"lib": ["es6"]
40+
},
41+
"exclude": ["node_modules"]
42+
}

lerna.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3+
"version": "0.0.0"
4+
}

0 commit comments

Comments
 (0)