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.
15 lines
293 B
JSON
15 lines
293 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "obj",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"types": ["vitest/globals"],
|
|
},
|
|
"include": [
|
|
"./types/**/*",
|
|
"./src/**/*"
|
|
]
|
|
}
|