Files
bridget/tsconfig.json
Sped0n 5569a41d7a feat: update dependencies, configuration, and input file for solidjs
- Update dependencies in package.json
- Modify the input file in rollup.config.mjs
- Update tsconfig.json with new configuration options
2024-02-14 22:37:43 +08:00

19 lines
450 B
JSON

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