-
Notifications
You must be signed in to change notification settings - Fork 291
/
tsconfig.json
34 lines (34 loc) · 1.06 KB
/
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
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"lib": ["es2022", "webworker", "DOM"],
"noImplicitAny": true,
"removeComments": true,
"outDir": "dist",
"target": "es2022",
"typeRoots": [ "./node_modules/@types/","./declarations"],
"resolveJsonModule": false,
"sourceMap": false,
"incremental": true,
"noEmit": true,
"alwaysStrict": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"strictNullChecks": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"paths": {
"@windy/*": [
"./node_modules/@windycom/plugin-devtools/types/*",
"./node_modules/@windycom/plugin-devtools/types/client/*",
],
}
},
"include": ["**/*.ts", "**/*.svelte"],
}