mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-23 19:24:52 +03:00
17 lines
400 B
JSON
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/**/*"]
|
|
}
|