16 lines
328 B
JSON
16 lines
328 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"noEmit": false,
|
||
|
|
"incremental": true,
|
||
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"sourceMap": true,
|
||
|
|
"declaration": false
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"]
|
||
|
|
}
|
||
|
|
|
||
|
|
|