-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·30 lines (30 loc) · 834 Bytes
/
tsconfig.json
File metadata and controls
executable file
·30 lines (30 loc) · 834 Bytes
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
{
"include": ["src", "types", "browser-tests", "cypress"],
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"checkJs": false,
"declaration": true,
"stripInternal": true,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"moduleResolution": "Node",
"noUnusedParameters": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"module": "esnext",
"lib": ["dom", "esnext"],
"types": ["cypress", "./cypress/cypress"],
"sourceMap": true,
// "rootDir": "./src",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"jsx": "preserve",
"jsxImportSource": "solid-js"
}
}