partey_workadventure/desktop/local-app/tsconfig.json

37 lines
827 B
JSON
Raw Normal View History

2022-02-20 20:30:53 +01:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"resolveJsonModule": true,
//"baseUrl": ".",
2022-02-20 20:30:53 +01:00
/**
* 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,
2022-02-22 10:05:21 +01:00
"checkJs": true,
"paths": {
"~/*": [
"./src/*"
],
"@wa-preload-local-app": [
"../electron/src/preload-local-app/types.ts"
],
2022-02-22 10:05:21 +01:00
}
2022-02-20 20:30:53 +01:00
},
"include": [
"src/**/*.d.ts",
"src/**/*.ts",
"src/**/*.js",
"src/**/*.svelte"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}