dyna3/lang-trials/rust/tsconfig.json
Aaron Fenyes 12abef4076 Trial a Rust engine powering a Civet interface
Write a basic web app with a Rust engine, compiled to WebAssembly,
powering a Civet interface. Do linear algebra in the engine using
the `nalgebra` crate.
2024-07-28 21:10:04 -07:00

16 lines
281 B
JSON

{
"compilerOptions": {
"strict": true,
"jsx": "preserve",
"lib": ["es2021", "dom"],
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "ES2020"
}
}
}