update deps and bootstrap loom
This commit is contained in:
parent
22e9ebc0f7
commit
677c22d3a6
21 changed files with 1132 additions and 49 deletions
24
platform/loom/editor/svelte-tsconfig.json
Normal file
24
platform/loom/editor/svelte-tsconfig.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"_version": "5.0.0",
|
||||
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"target": "es2017",
|
||||
/**
|
||||
Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
||||
to enforce using `import type` instead of `import` for Types.
|
||||
*/
|
||||
"verbatimModuleSyntax": true,
|
||||
/**
|
||||
To have warnings/errors of the Svelte compiler at the correct position,
|
||||
enable source maps by default.
|
||||
*/
|
||||
"sourceMap": true,
|
||||
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue