This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/tsconfig.json

17 lines
386 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"outDir": "dist/js",
"declarationDir": "dist/types",
"declaration": true,
"sourceMap": false,
"strict": true,
"esModuleInterop": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["src/**/*", "config.d.ts"],
"exclude": ["node_modules"]
}