Feat: created pipe only for strip html; Feat: created example project;

This commit is contained in:
Lorenzo Iovino 2019-05-08 11:21:51 +02:00
parent 30284843fb
commit fd2734d0da
47 changed files with 22064 additions and 0 deletions

36
tsconfig.json Normal file
View file

@ -0,0 +1,36 @@
{
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true
},
"compilerOptions": {
"baseUrl": "",
"declaration": true,
"stripInternal": true,
"strictNullChecks": true,
"noImplicitAny": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"inlineSources": true,
"rootDir": "./src",
"mapRoot": "./",
"module": "es2015",
"moduleResolution": "node",
"outDir": "./dist",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"@angular/core": ["./node_modules/@angular/core"]
}
},
"files": [
"./src/index.ts"
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true
}
}