Move tsconfig files to root, and made webpack config build

This commit is contained in:
Dolan Miu
2017-12-29 01:11:59 +00:00
parent 90dc1103f6
commit f84af9a44b
6 changed files with 23 additions and 23 deletions

21
test-tsconfig.json Normal file
View File

@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "es6",
"strictNullChecks": true,
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"outDir": "./build-tests",
"sourceRoot": "./src",
"rootDir": "./src",
"module": "commonjs",
"noUnusedLocals": true
},
"include": [
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": [
"node_modules"
]
}