This repository has been archived on 2026-09-03. 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.
open-brainy/tsconfig.browser.json

31 lines
551 B
JSON
Raw Normal View History

2025-06-23 14:46:26 -07:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"strict": true,
"declaration": false,
"outDir": "./dist",
"rootDir": ".",
"lib": [
"DOM",
"ESNext"
],
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"preserveConstEnums": true,
"sourceMap": true
},
"include": [
"src/**/*",
"demo/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}