-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (42 loc) · 1.6 KB
/
tsconfig.json
File metadata and controls
43 lines (42 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"declaration": true,
"removeComments": true,
"noLib": false,
"jsxFactory": "svelteNodeGUI.createElement",
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"pretty": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"lib": ["es6", "dom", "es2015.iterable", "es2017.string", "es2018.promise"],
"baseUrl": ".",
"types": ["node", "svelte"],
"paths": {
"~/*": ["src/*"],
"*": ["./node_modules/*"]
}
},
/**
* `svelte-nodegui.d.ts` provides the JSX typings needed to support Svelte components using lang="ts".
* If you'd prefer not to introduce a "files" property into your tsconfig, you can add this
* triple-slash directive to the top line of `src/app.ts` instead:
* /// <reference path="../node_modules/@nodegui/svelte-nodegui/svelte-nodegui.d.ts" />
* Remember to restart the Svelte Language Service after any significant changes to configuration.
*/
"files": [
"./node_modules/@nodegui/svelte-nodegui/svelte-nodegui.d.ts",
"./assets.d.ts"
],
"include": ["src/**/*", "assets/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
}