-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 652 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"outDir": "./",
"module": "esnext",
"target": "es6",
"moduleResolution": "bundler",
"esModuleInterop": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"rootDir": "./src",
"types": ["node", "jest"],
"paths": {
"@store": ["./src/@store"],
"@types": ["./src/@types"],
"@constants": ["./src/@constants"],
"@utils/*": ["./src/@utils/*"],
"@classes/*": ["./src/@classes/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}