Skip to content

Commit d694910

Browse files
committed
fix: restore the original tsconfig.json
1 parent 9dfa7c8 commit d694910

File tree

1 file changed

+6
-20
lines changed

1 file changed

+6
-20
lines changed

tsconfig.json

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,15 @@
11
{
22
"compilerOptions": {
3-
"module": "esnext",
43
"target": "es6",
5-
"jsx": "react",
4+
"module": "commonjs",
65
"moduleResolution": "node",
7-
"experimentalDecorators": true,
8-
"esModuleInterop": true,
6+
"declaration": true,
7+
"declarationDir": "lib",
98
"strict": true,
10-
"resolveJsonModule": true,
11-
"strictNullChecks": true,
12-
"lib": [
13-
"dom",
14-
"dom.iterable",
15-
"esnext"
16-
],
17-
"allowJs": true,
18-
"skipLibCheck": true,
19-
"allowSyntheticDefaultImports": true,
20-
"forceConsistentCasingInFileNames": true,
21-
"isolatedModules": false,
9+
"outDir": "lib",
2210
"strictPropertyInitialization": false,
23-
"noEmit": true,
11+
"experimentalDecorators": true,
2412
"emitDecoratorMetadata": true
2513
},
26-
"include": [
27-
"src"
28-
]
14+
"include": ["src/**/*.ts"]
2915
}

0 commit comments

Comments
 (0)