mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-07-22 10:07:42 -04:00
7332ece680
# Description of Changes Tests for case conversion. # API and ABI breaking changes NA # Expected complexity level and risk 1 --------- Co-authored-by: clockwork-labs-bot <bot@clockworklabs.com> Co-authored-by: clockwork-labs-bot <clockwork-labs-bot@users.noreply.github.com>
25 lines
598 B
JSON
25 lines
598 B
JSON
|
|
/*
|
|
* This tsconfig is used for TypeScript projects created with `spacetimedb init
|
|
* --lang typescript`. You can modify it as needed for your project, although
|
|
* some options are required by SpacetimeDB.
|
|
*/
|
|
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
|
|
/* The following options are required by SpacetimeDB
|
|
* and should not be modified
|
|
*/
|
|
"target": "ESNext",
|
|
"lib": ["ES2021", "dom"],
|
|
"module": "ESNext",
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["./**/*"]
|
|
}
|