scwrypts/zx/lib/tsconfig.json

19 lines
444 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "node",
"target": "ES2022",
"lib": ["ES2022"],
"checkJs": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "extensions", "**/*.test.ts"]
}