md-report/tsconfig.json

23 lines
613 B
JSON
Raw Normal View History

2022-04-13 10:24:39 +08:00
{
"compilerOptions": {
2022-05-29 15:05:41 +08:00
"module": "ESNext",
2022-04-16 17:17:49 +08:00
"baseUrl": ".",
2022-05-29 15:05:41 +08:00
"target": "ES2016",
"lib": ["ESNext"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noUnusedLocals": true,
2022-04-16 17:17:49 +08:00
"moduleResolution": "node",
2022-05-29 15:05:41 +08:00
"resolveJsonModule": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
2022-04-14 00:25:51 +08:00
"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"]
2022-05-29 15:05:41 +08:00
},
},
"exclude": ["**/dist/**", "node_modules"]
2022-04-13 10:24:39 +08:00
}