24 lines
585 B
JSON
24 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022", "DOM"],
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"composite": true, // 开启增量编译,利于 Monorepo 性能
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@nest-pure/shared": ["packages/shared/src/index.ts"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|
|
|