-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.21 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"module": "esnext",
"skipLibCheck": true,
"types": ["@types/bun", "@types/web"],
"typeRoots": ["./node_modules/@types", "./types"],
"outDir": "build",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"allowJs": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@teacss/postcss-breakpoints": ["./packages/breakpoints/src"],
"@teacss/postcss-whitespace": ["./packages/whitespace/src"]
},
"strict": true,
"composite": true,
"downlevelIteration": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"exclude": ["build", "dist", "node_modules"],
"include": [
"packages/*/src/**/*.@(js|jsx|ts|tsx)",
"packages/*/src/**/*.d.ts",
"packages/*/tests/**/*.@(js|jsx|ts|tsx)",
"packages/*/tests/**/*.d.ts",
"tests/**/*.@(js|jsx|ts|tsx)",
"tests/**/*.d.ts"
]
}