Files
Anthias/tsconfig.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"
]
}