Files
windmill/frontend/tsconfig.json
T

38 lines
1.0 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"],
"exclude": ["src/lib/monaco_workers/*.js"],
"extends": "./.svelte-kit/tsconfig.json"
}