-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
25 lines (25 loc) · 635 Bytes
/
Copy pathtsconfig.app.json
File metadata and controls
25 lines (25 loc) · 635 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
{
"compilerOptions": {
"baseUrl": "./",
"declaration": true,
"lib": ["es2017"],
"module": "ES2022",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist",
"paths": {
"*": ["../../node_modules/@types/*", "../../node_modules/*"]
},
"removeComments": true,
"rootDir": "./src/main",
"skipLibCheck": true,
"strict": true,
"stripInternal": true,
"target": "es2017",
"typeRoots": ["./node_modules/@types", "./node_modules"],
"types": ["node"]
},
"include": ["./src/main/**/*.ts"]
}