Files
ionic-framework/angular/tsconfig.schematics.json
Mike Hartington 75dd853a49 feat(): support ng add (#15323)
* feat(angular): support ng add

* feat(): add build aditions

* chore(): update schematics

* chore(): bad style import
2018-11-27 13:36:59 -05:00

20 lines
498 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowUnreachableCode": false,
"lib": ["es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
"pretty": true,
"rootDir": "src/schematics",
"target": "es2017",
"outDir": "dist/schematics"
},
"exclude": ["node_modules"],
"include": ["src/schematics/**/*.ts"]
}