mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-12 18:57:51 -04:00
3c8836b1a3
# Description of Changes We would like to move all of the templates to a central directory # API and ABI breaking changes None # Expected complexity level and risk 2 # Testing --------- Co-authored-by: spacetimedb-bot <spacetimedb-bot@users.noreply.github.com>
24 lines
597 B
JSON
24 lines
597 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": ["./**/*"]
|
|
} |