-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 712 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 712 Bytes
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
{
"compilerOptions": {
"outDir": "./",
"module": "esnext",
"target": "ES2020",
"lib": ["ES2020"],
"moduleResolution": "bundler",
"esModuleInterop": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"rootDir": ".",
"types": ["node", "jest"],
"paths": {
"@types": ["./src/@types"],
"#constants": ["./src/constants"],
"#classes/*": ["./src/classes/*"],
"#color/*": ["./src/color/*"],
"#css": ["./src/css"],
"#parsers": ["./src/parsers"],
"#returns": ["./src/returns"],
"#utilities": ["./src/utilities"]
}
},
"include": ["src/**/*.ts", "tests/**/*ts"],
"exclude": ["node_modules"]
}