Notes/tsconfig.json

59 lines
1.2 KiB
JSON
Raw Normal View History

2024-02-16 20:54:54 +02:00
{
"compilerOptions": {
2024-07-18 21:22:10 +03:00
"moduleResolution": "Bundler",
"module": "ES2022",
"target": "ES2020",
"declaration": false,
2024-02-16 20:54:54 +02:00
"sourceMap": true,
2024-07-13 19:02:51 +03:00
"outDir": "./build",
2024-02-16 21:03:37 +02:00
"strict": true,
2024-02-16 21:38:09 +02:00
"noImplicitAny": true,
2024-02-17 19:09:36 +02:00
"resolveJsonModule": true,
"lib": ["ES2022"],
2024-05-01 11:32:08 +02:00
"downlevelIteration": true,
2024-07-14 13:03:06 +03:00
"skipLibCheck": true,
2024-07-19 00:18:35 +03:00
"esModuleInterop": true,
"types": [
"@types/archiver",
"@types/better-sqlite3",
"@types/cls-hooked",
"@types/compression",
"@types/cookie-parser",
"@types/csurf",
"@types/debounce",
"@types/ejs",
"@types/escape-html",
"@types/express",
"@types/express-session",
"@types/html",
"@types/ini",
"@types/jasmine",
"@types/jsdom",
"@types/mime-types",
"@types/multer",
"@types/safe-compare",
"@types/sanitize-html",
"@types/sax",
"@types/semver",
"@types/serve-favicon",
"@types/session-file-store",
"@types/stream-throttle",
"@types/tmp",
"@types/turndown",
"@types/ws",
"@types/xml2js"
]
2024-02-16 20:54:54 +02:00
},
"include": [
"./src/**/*.js",
2024-07-13 14:02:19 +03:00
"./src/**/*.ts",
"./*.ts",
"./spec/**/*.ts",
"./spec-es6/**/*.ts"
2024-02-16 20:54:54 +02:00
],
2024-02-17 12:33:20 +02:00
"exclude": ["./node_modules/**/*"],
"files": [
"src/types.d.ts"
2024-02-17 12:33:20 +02:00
]
2024-05-03 21:18:20 +02:00
}