forked from rendajs/Renda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
34 lines (34 loc) · 839 Bytes
/
jsconfig.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
{
"extends": "./.denoTypes/tsconfig.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"target": "esnext",
"checkJs": true,
"module": "esnext",
"useDefineForClassFields": true,
"strict": true,
"typeRoots": [".denoTypes/@types"]
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"editor/src/**/*.js",
"editor/src/**/*.ts",
"editor/devSocket/src/**/*.js",
"editor/devSocket/src/**/*.ts",
"editor/editorDiscoveryServer/src/**/*.js",
"editor/editorDiscoveryServer/src/**/*.ts",
"editor/scripts/**/*.js",
"editor/scripts/**/*.ts",
"scripts/**/*.js",
"scripts/**/*.ts",
"test/**/*.js",
"test/**/*.ts",
],
"files": [
"src/mod.js",
"editor/src/network/editorConnections/internalDiscovery/InternalDiscoveryWorker.js",
"editor/src/main.js",
"editor/devSocket/src/main.js",
]
}