Server/project/tsconfig.json

27 lines
521 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": {
"resolveJsonModule": true,
"outDir": "obj",
"declaration": true,
"baseUrl": ".",
"paths": {
"@spt-aki/*": [
"src/*"
],
"@tests/*": [
"tests/*"
2023-03-03 16:23:46 +01:00
]
}
},
"include": [
"./src/**/*",
"./tests/**/*",
"./types/**/*",
"./user/mods/**/*"
],
"exclude": [
"./user/mods/**/*"
]
}