mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-28 03:43:24 +00:00
This introduces wasm-bindgen which will allow us to directly use all kinds of JS APIs in WASM without us having to manually provide all the functionality as imports. Instead we let wasm-bindgen handle all the importing. Additional webpack now handles the instantiation of the wasm module for us, which simplifies a bunch of things as well.
28 lines
668 B
JSON
28 lines
668 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"module": "ESNext",
|
|
"target": "ES5",
|
|
"jsx": "react",
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"alwaysStrict": true,
|
|
"strictFunctionTypes": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "Node",
|
|
"lib": [
|
|
"ES2015",
|
|
"DOM"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|