We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfa7c8 commit d694910Copy full SHA for d694910
1 file changed
tsconfig.json
@@ -1,29 +1,15 @@
1
{
2
"compilerOptions": {
3
- "module": "esnext",
4
"target": "es6",
5
- "jsx": "react",
+ "module": "commonjs",
6
"moduleResolution": "node",
7
- "experimentalDecorators": true,
8
- "esModuleInterop": true,
+ "declaration": true,
+ "declarationDir": "lib",
9
"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,
+ "outDir": "lib",
22
"strictPropertyInitialization": false,
23
- "noEmit": true,
+ "experimentalDecorators": true,
24
"emitDecoratorMetadata": true
25
},
26
- "include": [
27
- "src"
28
- ]
+ "include": ["src/**/*.ts"]
29
}
0 commit comments