puppeteer/packages/ng-schematics/tsconfig.json

20 lines
460 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "tsconfig",
"lib": ["ES2018"],
"module": "CommonJS",
"noEmitOnError": true,
"rootDir": "src/",
"outDir": "lib/",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"types": ["node"],
"target": "ES6"
},
"include": ["src/**/*"],
"exclude": ["src/**/files/**/*"],
"references": [{"path": "./tsconfig.spec.json"}]
}