snort/packages/app/tsconfig.json

19 lines
392 B
JSON
Raw Normal View History

2023-01-12 15:35:42 +00:00
{
"compilerOptions": {
2023-11-20 22:10:34 +00:00
"baseUrl": ".",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
2023-10-06 13:17:28 +00:00
"module": "ESNext",
2023-01-12 15:35:42 +00:00
"jsx": "react-jsx",
2023-10-06 13:17:28 +00:00
"moduleResolution": "Bundler",
"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-11-17 11:52:10 +00:00
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./src/*"]
}
2023-01-12 15:35:42 +00:00
}
}