Files
fluent-url/tsconfig.json

44 lines
919 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "nodenext",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": ".",
"outDir": "./dist",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"moduleDetection": "force",
"isolatedModules": true,
"removeComments": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"paths": {
"@/*": [
"./lib/*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"typeRoots": [
"lib/shared/types"
]
},
"include": [
"lib/**/*",
"sandbox/**/*",
],
}