init: working state
compiler + test suite are fine. logging module started, I'd say about 50% complete.
This commit is contained in:
commit
d27f6c65c1
11 changed files with 7500 additions and 0 deletions
19
tsconfig.json
Normal file
19
tsconfig.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2015",
|
||||
"module": "commonjs",
|
||||
"strict": true,
|
||||
"sourceMap": false,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": false,
|
||||
"allowJs": false,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"outDir": "build/production",
|
||||
"baseUrl": "./",
|
||||
"paths": { "*": ["node/modules/*"] }
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue