30 líneas
560 B
JSON
30 líneas
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"automixer": ["./src/index.js"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"bin/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"tests"
|
|
]
|
|
}
|