Server/project/tsconfig.typedef.json

18 lines
331 B
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"extends": "./tsconfig.base.json",
2023-03-03 16:23:46 +01:00
"compilerOptions": {
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./types",
"baseUrl": ".",
"paths": {
"@spt-aki/*": [
"src/*"
]
}
2023-03-03 16:23:46 +01:00
},
"exclude": [
"./types/**/*"
]
}