Migrate Master component to typescript

This commit is contained in:
Qolzam
2017-10-07 15:05:07 +07:00
parent 1810550331
commit 8e8875b15c
7 changed files with 164 additions and 32 deletions

View File

@@ -4,10 +4,9 @@
"module": "es6", // use ES2015 modules
"target": "es6", // compile to ES2015 (Babel will do the rest)
"allowSyntheticDefaultImports": true, // see below
"baseUrl": "./app", // enables you to import relative to this folder
"baseUrl": "./app/", // enables you to import relative to this folder
"paths": {
"angular2/*": ["../path/to/angular2/*"],
"local/*": ["../path/to/local/modules/*"]
"app/*" : ["*"]
},
"sourceMap": true, // make TypeScript generate sourcemaps
"outDir": "public", // output directory to build to (irrelevant because we use Webpack most of the time)