puppeteer/packages/ng-schematics/tsconfig.json

19 lines
452 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "tsconfig",
2023-08-28 11:01:52 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmitOnError": true,
"rootDir": "src/",
"outDir": "lib/",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
2023-06-23 14:02:52 +00:00
"types": ["node"]
},
"include": ["src/**/*"],
"exclude": ["src/**/files/**/*"],
"references": [{"path": "./tsconfig.spec.json"}]
}