Move ts to src folder for standards

This commit is contained in:
Dolan
2017-12-15 00:01:59 +00:00
parent cf1689a3c2
commit 01950ed443
122 changed files with 5 additions and 5 deletions

View File

@ -4,16 +4,16 @@
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
"main": "build/index.js",
"scripts": {
"pretest": "rimraf ./build-tests && tsc -p ts/test-tsconfig.json",
"pretest": "rimraf ./build-tests && tsc -p src/test-tsconfig.json",
"test": "mocha ./build-tests --recursive",
"prepublishOnly": "npm run build",
"lint": "tslint --project ./ts",
"build": "rimraf ./build && tsc -p ts",
"lint": "tslint --project ./src",
"build": "rimraf ./build && tsc -p src",
"demo": "npm run build && node ./demo",
"typedoc": "typedoc --out docs/ ts/ --module commonjs --target ES6 --disableOutputCheck"
"typedoc": "typedoc --out docs/ src/ --module commonjs --target ES6 --disableOutputCheck"
},
"files": [
"ts",
"src",
"build",
"template"
],

Some files were not shown because too many files have changed in this diff Show More