libresolver/tsconfig.json

25 lines
559 B
JSON
Raw Normal View History

2022-08-18 14:49:10 +00:00
{
"compilerOptions": {
"declaration": true,
"strict": true,
"module": "esnext",
"target": "esnext",
"esModuleInterop": true,
"sourceMap": false,
"rootDir": "src",
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
],
"moduleResolution": "node",
"declarationMap": true,
"declarationDir": "dist",
"emitDeclarationOnly": false,
2022-08-19 15:53:26 +00:00
"allowJs": true,
"noImplicitAny": false
2022-08-18 14:49:10 +00:00
},
"include": [
"src"
]
}