mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-21 16:00:59 -05:00
17 lines
355 B
JSON
17 lines
355 B
JSON
{
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["node_modules", "./test/**/*"],
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": "./src",
|
|
"outDir": "./dist",
|
|
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
}
|
|
},
|
|
}
|