Skip to content

Commit 336c343

Browse files
author
Christoph Bühler
committed
feat: Add base library
parser adding library
1 parent 69c00fc commit 336c343

File tree

165 files changed

+26507
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+26507
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# node
2+
logs
3+
*.log
4+
npm-debug.log*
5+
node_modules/
6+
7+
# testing
8+
coverage/
9+
10+
# typescript
11+
build/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
sudo: false
2+
3+
language: node_js
4+
node_js:
5+
- '6'
6+
- '7'
7+
- '8'
8+
9+
script:
10+
- npm test
11+
12+
after_script: npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls

CHANGELOG.md

Whitespace-only changes.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# node typescript parser
2+
3+
## How to use

config/tsconfig.base.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es6",
4+
"module": "commonjs",
5+
"moduleResolution": "node",
6+
"removeComments": false,
7+
"outDir": "../build",
8+
"rootDir": "../src",
9+
"declaration": true,
10+
"sourceMap": false,
11+
"importHelpers": true,
12+
"strictNullChecks": true,
13+
"experimentalDecorators": true,
14+
"emitDecoratorMetadata": true,
15+
"noUnusedLocals": true,
16+
"noUnusedParameters": true,
17+
"lib": [
18+
"es2015",
19+
"dom"
20+
]
21+
},
22+
"include": [
23+
"../src/**/*"
24+
],
25+
"exclude": [
26+
"../node_modules",
27+
"../build"
28+
]
29+
}

config/tsconfig.build.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "./tsconfig.base.json",
3+
"compilerOptions": {
4+
"outDir": "../"
5+
}
6+
}

docs/assets/css/main.css

Lines changed: 865 additions & 0 deletions
Large diffs are not rendered by default.

docs/assets/css/main.css.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/images/icons.png

9.26 KB
Loading

0 commit comments

Comments
 (0)