electricity_bill_calc_userR.../tsconfig.json

59 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "ES6",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "ES6",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitAny": false,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"baseUrl": "./",
"paths": {
"@c/*": [
"src/components/*"
],
"@h/*": [
"src/hooks/*"
],
"@p/*": [
"src/pages/*"
],
"@q/*": [
"src/queries/*"
],
"@st/*": [
"src/states/*"
],
"@u/*": [
"src/utils/*"
],
"config/*": [
"src/config/*"
],
"assets/*": [
"src/assets/*"
],
"@/*": [
"src/*"
]
}
},
"include": [
"./src"
]
}