-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 1.21 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
{
"compilerOptions": {
"allowJs": false,
"allowUnreachableCode": false,
"composite": true,
"declaration": true,
"declarationMap": false,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"jsx": "react-jsx",
"jsxImportSource": "@roots/bud-support",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "NodeNext",
"noImplicitOverride": true,
"noUnusedLocals": true,
"removeComments": false,
"resolveJsonModule": false,
"sourceMap": false,
"skipLibCheck": true,
"strictBindCallApply": true,
"target": "es2022",
// "types": ["node", "vitest/importMeta", "webpack", "webpack-env"],
"verbatimModuleSyntax": true,
"rootDir": "src",
"outDir": "lib",
"types": [
"node",
"webpack",
"@roots/bud-framework",
"@roots/bud-build",
"@roots/bud-extensions",
"@roots/bud-support",
"@roots/bud-api",
"@roots/bud-postcss"
]
},
"include": ["./src"],
"exclude": ["test", "node_modules", "dist"]
}