-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 826 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 826 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
28
{
"compilerOptions": {
"outDir": "./dist/",
"module": "esnext",
"target": "ES6",
"lib": ["dom", "es2019"],
"moduleResolution": "bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"skipLibCheck": true,
"rootDir": "./",
"types": ["node"],
"paths": {
"@types": ["./src/types"],
"@constants": ["./src/constants"],
"@utilities": ["./src/utilities"],
"@validators": ["./src/validators"],
"@fetcher": ["./src/fetcher"],
"@subscribers": ["./src/subscribers"],
"@styles": ["./src/styles"]
}
},
"include": ["src/**/*.ts", "playwright.config.ts", "package.json"],
"exclude": ["node_modules"]
}