generated from lzilioli/lz-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
35 lines (35 loc) · 850 Bytes
/
tsconfig.json
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
32
33
34
35
{
"compilerOptions": {
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"checkJs": false,
"allowJs": true,
"target": "ES2022",
"declaration": true,
"declarationMap": true,
"declarationDir": "dist",
"outDir": "/dev/null",
"resolveJsonModule": true,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@lib/*": ["lib/*"],
"@examples/*": ["examples/*"],
"@lzilioli/md-macros": ["./lib/entries/index.ts"]
}
},
"types": [
"node",
"webpack-env"
],
"include": [
"./lib/**/*",
"./tests/**/*",
],
"exclude": [
"node_modules"
]
}