Files
lustpress/tsconfig.json
2026-05-14 04:34:47 +07:00

28 lines
694 B
JSON

{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowJs": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowUnreachableCode": false,
"baseUrl": "src",
"paths": {}
},
"include": [
"src/**/*"
],
"exclude": ["node_modules", "build", "out", "tmp", "logs", "test"]
}