-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (29 loc) · 882 Bytes
/
tsconfig.json
File metadata and controls
31 lines (29 loc) · 882 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
29
30
31
{
// https://github.com/tsconfig/bases#recommended-tsconfigjson
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"lib": ["dom", "dom.iterable", "esnext"],
"composite": false,
"target": "ESNext",
// typescript options here
"rootDir": "./src",
"outDir": "./dist",
"declaration": true,
// "declarationMap": true,
// "noImplicitReturns": false,
"resolveJsonModule": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"checkJs": true,
"isolatedModules": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"],
},
},
"include": ["src/**/*.ts", "src/**/*.js", "types"],
"exclude": ["**/node_modules/@types/node/*", "demo"],
"references": [{ "path": "./tsconfig.node.json" }],
}