Files
lustpress/tsconfig.json

28 lines
694 B
JSON
Raw Permalink Normal View History

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