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