23 lines
448 B
JSON
23 lines
448 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"target": "ES2025",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
|
|
"lib": ["ES2025"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["**/*.wasp.ts", ".wasp/out/types/spec"]
|
|
}
|