Files
bridget/tsconfig.json
Sped0n b496e23d9a chore(tsconfig.json): remove "watch" option to avoid confusion as it is not needed
chore(tsconfig.json): add "baseUrl" option with value "./" to set the base URL for module resolution
2023-11-01 23:24:05 +08:00

17 lines
392 B
JSON

{
"compilerOptions": {
"lib": ["esnext", "dom"],
"removeComments": true,
"target": "es2021",
"module": "esnext",
"baseUrl": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
},
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Recommended"
}