mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
21 lines
494 B
JSON
21 lines
494 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"lib": ["es2021"],
|
|
"skipLibCheck": true,
|
|
"jsx": "react",
|
|
"module": "ESNext",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"checkJs": false
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
|
"exclude": ["dist", "node_modules", "tests"]
|
|
}
|