Files
windmill/frontend/tsconfig.json
Ruben Fiszel b455f5b883 update monaco (#5071)
* update monaco

* update monaco
2025-01-15 23:57:47 +01:00

38 lines
1.1 KiB
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"lib": ["es2021", "DOM"],
"target": "esnext",
"outDir": "build",
"noUnusedLocals": true,
// "noUnusedParameters": true,
/**
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using \`import type\` instead of \`import\` for Types.
*/
"isolatedModules": true,
"resolveJsonModule": true,
"noImplicitAny": false,
/**
To have warnings/errors of the Svelte compiler at the correct position,
enable source maps by default.
*/
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": false,
"strict": true,
"types": []
},
"include": ["src/**/*.js", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.svelte", "src/lib/components/triggers/TriggersEditorSectionsvelte"],
"exclude": ["src/lib/monaco_workers/*.js"],
"extends": "./.svelte-kit/tsconfig.json"
}