mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
22 lines
627 B
JSON
Generated
22 lines
627 B
JSON
Generated
{
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
// Overriding this until we implement more complete TypeScript support.
|
|
"strict": false,
|
|
// Overriding this because we want to use top-level await
|
|
"module": "esnext",
|
|
"target": "es2017",
|
|
// Enable source map for debugging
|
|
"sourceMap": true,
|
|
// The remaining settings should match node18/tsconfig.json, but I kept
|
|
// them here to be explicit.
|
|
|
|
// Enable default imports in TypeScript.
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"allowJs": true
|
|
},
|
|
"include": ["src"]
|
|
}
|