es-toolkit/tsconfig.json

17 lines
400 B
JSON
Raw Normal View History

2024-04-25 14:56:13 +03:00
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "ESNext",
2024-06-30 07:23:06 +03:00
"module": "ESNext",
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleResolution": "Bundler",
2024-04-25 14:56:13 +03:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
2024-09-08 11:54:22 +03:00
"include": ["src", ".scripts/**/*"],
"exclude": [".scripts/docs/**/*"]
2024-04-25 14:56:13 +03:00
}