2022-04-22 19:02:54 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"sourceMap": false,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"types": ["node", "vite-plugin-svgr/client"],
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
2022-04-27 11:32:21 -04:00
|
|
|
"@assets/*": ["../assets/*"],
|
2022-04-22 19:02:54 -04:00
|
|
|
"@atoms/*": ["components/atoms/*"],
|
|
|
|
"@constants/*": ["constants/*"],
|
2022-05-09 16:06:01 -04:00
|
|
|
"@hooks/*": ["hooks/*"],
|
2022-04-22 19:02:54 -04:00
|
|
|
"@molecules/*": ["components/molecules/*"],
|
|
|
|
"@organisms/*": ["components/organisms/*"],
|
|
|
|
"@pages/*": ["pages/*"],
|
|
|
|
"@src/*": ["./*"],
|
|
|
|
"@templates/*": ["components/templates/*"],
|
|
|
|
"@utils/*": ["utils/*"]
|
|
|
|
},
|
|
|
|
"lib": ["ESNext", "dom", "dom.iterable"]
|
|
|
|
},
|
|
|
|
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"types/**/*.d.ts",
|
|
|
|
"../../types/**/*.d.ts",
|
2022-05-21 09:25:31 -04:00
|
|
|
"../preload/contracts.d.ts",
|
2022-05-27 16:34:22 -04:00
|
|
|
"../../tests/setup-tests.ts",
|
|
|
|
"../../tests/global-setup.ts"
|
2022-04-22 19:02:54 -04:00
|
|
|
],
|
|
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
|
|
}
|