-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.62 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"include": ["**/*.ts", "**/*.mjs", "**/*.js", "**/*.d.ts", "**/*.tsx"],
"exclude": ["./node_modules", "../node_modules", "./externals", "./frontend"],
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["./global.d.ts"],
"paths": {
"@/*": ["*"],
"@adl/*": ["src/*"],
"@src/*": ["src/*"],
"@assets/*": ["assets/*"]
},
"baseUrl": "./",
"composite": true,
"lib": ["dom", "esnext", "webworker"],
"module": "ESNext",
"target": "ESNext",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"allowJs": true,
"noEmit": true,
"sourceMap": true,
"removeComments": false,
"noImplicitAny": false,
"noImplicitOverride": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"strictBindCallApply": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowUnusedLabels": true,
"allowUnreachableCode": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"experimentalDecorators": true
}
}