snort/packages/app/tsconfig.json

16 lines
350 B
JSON
Raw Normal View History

2023-01-12 15:35:42 +00:00
{
"compilerOptions": {
2023-01-20 11:11:50 +00:00
"baseUrl": "src",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
"module": "NodeNext",
2023-01-12 15:35:42 +00:00
"jsx": "react-jsx",
2023-10-06 12:16:28 +00:00
"moduleResolution": "NodeNext",
"sourceMap": true,
2023-01-12 15:35:42 +00:00
"forceConsistentCasingInFileNames": true,
"strict": true,
2023-02-08 05:56:00 +00:00
"skipLibCheck": true,
"resolveJsonModule": true,
2023-10-06 12:16:28 +00:00
"allowSyntheticDefaultImports": true
2023-01-12 15:35:42 +00:00
}
}