quill/tsconfig.json
Jason Chen 07b68c98b3
Handle consecutive spaces when copying and pasting
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
2024-11-29 14:09:57 +08:00

22 lines
439 B
JSON

{
"ts-node": {
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs"
}
},
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"declaration": true,
"module": "ES2020",
"moduleResolution": "node",
"noEmit": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true
},
"include": ["./**/*"]
}