dev: tsconfig for mui-grid-form
Massimo Melina committed
Apr 14, 2023 at 10:30 UTC
3018d7df43b37f6f5ce3d7d2230a9ba6eaae3e00
1 file changed
+26
mui-grid-form/tsconfig.json
new
+26
@@ -0,0 +1,26 @@
1
+{
2
+ "compilerOptions": {
3
+ "target": "es2017",
4
+ "lib": [
5
+ "dom",
6
+ "dom.iterable",
7
+ "esnext"
8
+ ],
9
+ "allowJs": true,
10
+ "skipLibCheck": true,
11
+ "esModuleInterop": true,
12
+ "allowSyntheticDefaultImports": true,
13
+ "strict": true,
14
+ "forceConsistentCasingInFileNames": true,
15
+ "noFallthroughCasesInSwitch": true,
16
+ "module": "esnext",
17
+ "moduleResolution": "node",
18
+ "resolveJsonModule": true,
19
+ "isolatedModules": true,
20
+ "noEmit": true,
21
+ "jsx": "react-jsx"
22
+ },
23
+ "include": [
24
+ "."
25
+ ]
26
+}