chore: update ts config
This commit is contained in:
parent
acd9ed4128
commit
505014ae52
|
@ -1,13 +1,22 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "CommonJS",
|
||||
"target": "ES2017",
|
||||
"module": "ESNext",
|
||||
"baseUrl": ".",
|
||||
"target": "ES2016",
|
||||
"lib": ["ESNext"],
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"noUnusedLocals": true,
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"strictNullChecks": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"paths": {
|
||||
"@md-report/types": ["./packages/types/src/index.ts"],
|
||||
"@md-report/parser": ["./packages/parser/src/index.ts"],
|
||||
"@md-report/core": ["./packages/core/src/index.ts"]
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
"exclude": ["**/dist/**", "node_modules"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue