23 lines
513 B
JSON
23 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@fischerx/*": ["packages/*/src"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "**/.gitkeep"]
|
|
}
|