Files
BrowserOS/tsconfig.json
2025-09-11 10:44:58 -07:00

36 lines
860 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["*"],
"@tests/*": ["../tests/*"]
},
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
"types": [
"chrome"
]
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}