ad5e0815b6
Basically the same, except it plays nicer with Typescript and ESM. I have it mostly working, except for a type error: `TypeError: Int32Array is not a constructor` But I'm too damn tired it debug it at the moment.
27 lines
521 B
JSON
27 lines
521 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"outDir": "obj",
|
|
"declaration": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@spt-aki/*": [
|
|
"src/*"
|
|
],
|
|
"@tests/*": [
|
|
"tests/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./tests/**/*",
|
|
"./types/**/*",
|
|
"./user/mods/**/*"
|
|
],
|
|
"exclude": [
|
|
"./user/mods/**/*"
|
|
]
|
|
}
|