19 lines
455 B
JSON
19 lines
455 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"module": "commonjs",
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true
|
||
|
},
|
||
|
"include": [".wundergraph/**/*.ts"]
|
||
|
}
|