forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
52 lines (48 loc) · 1.3 KB
/
Copy pathtsconfig.app.json
File metadata and controls
52 lines (48 loc) · 1.3 KB
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
50
51
52
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"types": ["vite/client", "node", "vitest/globals"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": false,
"noFallthroughCasesInSwitch": true,
/* RELEVANT FIXES BELOW */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
/* @tikka/sdk is consumed straight from source — the SDK's dist is never
built by the client CI, and its exports map points at dist only. */
"paths": {
"@tikka/sdk": ["../sdk/src/index.light.ts"],
"@tikka/sdk/light": ["../sdk/src/index.light.ts"]
}
},
"include": [
"src"
],
"exclude": [
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}