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

27
tsconfig.json Normal file
View File

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