Skip to content

Commit e3629be

Browse files
committed
fix: really add the tsconfig
1 parent fc0a25e commit e3629be

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ Thumbs.db
5858
# Added by coconfig
5959
.eslintignore
6060
.npmignore
61-
tsconfig.json
6261
tsconfig.build.json
6362
.commitlintrc.json
6463
jest.config.cjs

tsconfig.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"include": [
3+
"@types/**/*",
4+
"src/**/*",
5+
"__tests__/**/*",
6+
"__mocks__/**/*",
7+
"coconfig.ts",
8+
"vitest.config.ts",
9+
"tsup.config.ts"
10+
],
11+
"exclude": [
12+
"node_modules",
13+
"build"
14+
],
15+
"compilerOptions": {
16+
"lib": [
17+
"ES2022",
18+
"DOM"
19+
],
20+
"module": "NodeNext",
21+
"moduleResolution": "NodeNext",
22+
"target": "ES2019",
23+
"declaration": true,
24+
"sourceMap": true,
25+
"outDir": "./build",
26+
"incremental": true,
27+
"isolatedModules": true,
28+
"strict": true,
29+
"baseUrl": "./src",
30+
"allowSyntheticDefaultImports": true,
31+
"esModuleInterop": true,
32+
"experimentalDecorators": true,
33+
"skipLibCheck": true
34+
}
35+
}

0 commit comments

Comments
 (0)