diff options
Diffstat (limited to 'Timeline/ClientApp/tsconfig.json')
-rw-r--r-- | Timeline/ClientApp/tsconfig.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Timeline/ClientApp/tsconfig.json b/Timeline/ClientApp/tsconfig.json new file mode 100644 index 00000000..9a057241 --- /dev/null +++ b/Timeline/ClientApp/tsconfig.json @@ -0,0 +1,25 @@ +{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react"
+ },
+ "include": [
+ "src"
+ ]
+}
|