mirror of
https://github.com/Screenly/Anthias.git
synced 2025-12-23 14:28:13 -05:00
32 lines
748 B
JSON
32 lines
748 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["static/src/components/*"],
|
|
"@/constants": ["static/src/constants.ts"],
|
|
"@/hooks/*": ["static/src/hooks/*"],
|
|
"@/store/*": ["static/src/store/*"],
|
|
"@/sass/*": ["static/sass/*"],
|
|
"@/types": ["static/src/types.ts"],
|
|
"@/tests/*": ["static/src/tests/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"static/src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"static/dist",
|
|
"static/spec"
|
|
]
|
|
}
|