generated from sonofmagic/npm-lib-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
54 lines (54 loc) · 967 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDirs": [
"src",
"test"
],
"target": "ES6",
"declaration": false,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"moduleResolution": "Node",
"module": "ESNext",
"sourceMap": false,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"types": [
"vitest/globals"
]
},
"exclude": [
"dist",
"node_modules",
"test/types",
"test/fixtures",
"test/config"
],
"include": [
"src/**/*",
"types/**/*",
"test/**/*",
"rollup.config.ts",
"e2e/index.test.ts"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
},
"require": [
"tsconfig-paths/register"
]
}
}