mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-14 10:21:38 +00:00
27 lines
765 B
JSON
27 lines
765 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.svelte",
|
|
// https://github.com/microsoft/TypeScript/issues/33136#issuecomment-578699134
|
|
"../common/**/*.js"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|