25 lines
532 B
JSON
25 lines
532 B
JSON
{
|
|
"extends": "./base_tsconfig.json",
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"outDir": "obj",
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@spt-aki/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./tests/**/*",
|
|
"./types/**/*",
|
|
"./user/mods/**/*"
|
|
],
|
|
"exclude": [
|
|
"./user/mods/**/*"
|
|
]
|
|
} |