mirror of
https://github.com/evroon/bracket.git
synced 2026-01-21 12:38:40 -05:00
27 lines
617 B
JSON
27 lines
617 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@*": ["*"],
|
|
"@components/*": ["components/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@openapi/*": ["openapi/*"],
|
|
},
|
|
"target": "es6",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true
|
|
},
|
|
"include": [ "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|