patha
Version:
File paths library. All you need to work with paths. Tiny drop-in replacement for 'path'. Works in Node, Browser, and Deno.
34 lines (33 loc) • 839 B
JSON
{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"sourceMap": false,
"inlineSourceMap": true,
"inlineSources": true,
"preserveSymlinks": true,
"removeComments": false,
"skipLibCheck": false,
"lib": ["ES2020"],
"target": "ES2020",
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"module": "ESNext",
"moduleResolution": "node",
"importHelpers": false,
"outDir": "./dist"
},
"compileOnSave": false,
"include": ["./src"]
}