ipsos-components
Version:
Material Design components for Angular
29 lines (28 loc) • 726 B
JSON
// TypeScript config file that is used to compile the files that prerender the Universal app.
{
"compilerOptions": {
"declaration": false,
"stripInternal": false,
"experimentalDecorators": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": ".",
"rootDir": ".",
"sourceMap": true,
"target": "es2015",
"lib": ["es2015", "dom"],
"skipLibCheck": true,
"types": [],
"baseUrl": ".",
"paths": {
"@angular/material": ["./material"],
"@angular/cdk/*": ["./cdk/*"],
"@angular/material/*": ["./material/*"]
}
},
"files": [
"prerender.ts"
]
}