SIGN IN SIGN UP
2015-05-14 19:01:20 -07:00
{
"compilerOptions": {
"target": "es5",
2015-05-14 19:01:20 -07:00
"module": "commonjs",
2016-07-05 16:43:27 -07:00
"moduleResolution": "node",
2015-05-14 19:01:20 -07:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2016-08-25 10:36:18 -07:00
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"noEmitHelpers": true,
"importHelpers": true,
"strictNullChecks": false,
"lib": [
"dom",
2016-08-07 13:05:06 -07:00
"es6"
],
2017-11-14 00:39:20 +02:00
"baseUrl": "./src",
"paths": {
"@angular/*": ["node_modules/@angular/*"]
},
"typeRoots": [
"node_modules/@types"
],
"types": [
"hammerjs",
"jasmine",
"node",
"uglify-js",
"webpack"
]
2015-05-14 19:01:20 -07:00
},
2016-01-24 20:45:02 -08:00
"exclude": [
2016-08-01 09:03:24 -07:00
"node_modules",
"dist"
2015-12-19 17:40:29 -08:00
],
"awesomeTypescriptLoaderOptions": {
2016-06-20 15:28:26 -07:00
"forkChecker": true,
"useWebpackText": true
},
2015-12-19 17:40:29 -08:00
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
2015-05-14 19:01:20 -07:00
}