forked from microbit-foundation/cctd-ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
47 lines (47 loc) · 972 Bytes
/
tsconfig.json
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
44
45
46
47
/**
* (c) 2023, Center for Computational Thinking and Design at Aarhus University and contributors
*
* SPDX-License-Identifier: MIT
*/
{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": [
"src/**/*",
"src/node_modules/**/*",
],
"exclude": [
"node_modules/*",
"__sapper__/*",
"public/*",
"prepEnv.js"
],
"compilerOptions": {
"allowJs": true,
"module": "ESNext",
"lib": [
"DOM",
"ESNext",
"WebWorker"
],
"moduleResolution": "node",
"resolveJsonModule": true,
"noImplicitAny": true,
"noEmit": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"importsNotUsedAsValues": "remove",
"strict": true,
"verbatimModuleSyntax": false,
"ignoreDeprecations": "5.0",
"noFallthroughCasesInSwitch": true,
"types": [
"svelte",
"node",
"vitest/globals"
],
},
"files": [
"./windi.config.js",
"./prepEnv.js"
]
}