Files
2026-07-13 13:34:31 +08:00

31 lines
1.0 KiB
JSON

// =============================== IMPORTANT =================================
// This file is mainly used for Wasp IDE support.
//
// Wasp will compile your code with slightly different (less strict) compilerOptions.
// You can increase the configuration's strictness (e.g., by adding
// "noUncheckedIndexedAccess": true), but you shouldn't reduce it (e.g., by
// adding "strict": false). Just keep in mind that this will only affect your
// IDE support, not the actual compilation.
//
// Full TypeScript configurability is coming very soon :)
{
"compilerOptions": {
"module": "esnext",
"composite": true,
"target": "esnext",
"moduleResolution": "bundler",
"jsx": "preserve",
"strict": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleDetection": "force",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"allowJs": true,
"outDir": ".wasp/out/user",
"types": ["react", "node"]
},
"include": ["src"],
"exclude": ["**/*.wasp.ts"]
}