es-toolkit/tsconfig.json
2024-09-08 17:54:22 +09:00

17 lines
400 B
JSON

{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src", ".scripts/**/*"],
"exclude": [".scripts/docs/**/*"]
}