Skip to content

Commit

Permalink
fix: restore the original tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Sep 15, 2023
1 parent 9dfa7c8 commit d694910
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,15 @@
{
"compilerOptions": {
"module": "esnext",
"target": "es6",
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"declaration": true,
"declarationDir": "lib",
"strict": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"outDir": "lib",
"strictPropertyInitialization": false,
"noEmit": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"src"
]
"include": ["src/**/*.ts"]
}

0 comments on commit d694910

Please sign in to comment.