Files
LiveSplitOne/tsconfig.json
T
Christopher Serr b9e498f0a4 Switch to wasm-bindgen
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.
2019-12-27 15:00:28 +01:00

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/**/*"
]
}