mirror of
https://github.com/less/less.js.git
synced 2026-01-09 15:48:08 -05:00
* ESLint updates and linting cleanup * Exclude test files from some linting rules for now * Fix some TypeScript and build issues
20 lines
385 B
JSON
20 lines
385 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./lib",
|
|
"rootDir": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"noImplicitAny": true,
|
|
"target": "ES5"
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"rootDir": "."
|
|
}
|
|
},
|
|
"include": ["**/*"],
|
|
"exclude": ["node_modules", "lib/**/*"]
|
|
} |