We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9330d34 commit 3eed8b8Copy full SHA for 3eed8b8
client/tsconfig.json
@@ -14,6 +14,13 @@
14
"resolveJsonModule": true,
15
"allowSyntheticDefaultImports": true,
16
"forceConsistentCasingInFileNames": true,
17
+
18
+ // From https://www.typescriptlang.org/docs/handbook/babel-with-typescript.html to use Babel for transpiling, tsc for types
19
+ // Ensure that .d.ts files are created by tsc, but not .js files
20
+ "declaration": true,
21
+ "emitDeclarationOnly": true,
22
+ // Ensure that Babel can safely transpile files in the TypeScript project
23
+ "isolatedModules": true
24
},
25
"include": ["**/*"],
26
"exclude": [
0 commit comments