-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.23 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["es2022"],
"module": "CommonJS",
"declaration": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@Glob": ["./src/Glob"],
"@Glob*": ["./src/Glob*"],
"@Helpers": ["./src/Helpers"],
"@Helpers*": ["./src/Helpers*"],
"@MixFunctionSettings": ["./src/MixFunctionSettings"],
"@MixFunctionSettings*": ["./src/MixFunctionSettings*"],
"@MixGlob": ["./src/MixGlob"],
"@MixGlob*": ["./src/MixGlob*"],
"@MixGlobPlugin": ["./src/MixGlobPlugin"],
"@MixGlobPlugin*": ["./src/MixGlobPlugin*"],
"@Utils*": ["./src/Utils*"],
"@WatchingManager": ["./src/WatchingManager"],
"@WatchingManager*": ["./src/WatchingManager*"]
},
"allowJs": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/__fixtures__"]
}