mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
e92cb25249
Implement the TS SDK as a preview feature.
26 lines
510 B
JSON
26 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
|
|
// linting
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
|
|
"module": "NodeNext",
|
|
"outDir": "dist",
|
|
"declarationMap": true,
|
|
|
|
"declaration": true,
|
|
"lib": ["es2022"]
|
|
},
|
|
// better structure in output
|
|
"include": ["src"],
|
|
}
|