Files
wiki/convex/tsconfig.json

19 lines
415 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ESNext",
"lib": ["ES2021", "DOM"],
"module": "ESNext",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["./**/*.ts"],
"exclude": ["_generated"]
}