sync cleaned docs: dsh-plugin/memory-director/tsconfig.json
Browse files
dsh-plugin/memory-director/tsconfig.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"module": "ESNext",
|
| 5 |
+
"moduleResolution": "Bundler",
|
| 6 |
+
"strict": true,
|
| 7 |
+
"esModuleInterop": true,
|
| 8 |
+
"skipLibCheck": true,
|
| 9 |
+
"declaration": true,
|
| 10 |
+
"outDir": "lib",
|
| 11 |
+
"rootDir": "src",
|
| 12 |
+
"resolveJsonModule": true
|
| 13 |
+
},
|
| 14 |
+
"include": ["src"]
|
| 15 |
+
}
|