mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fixed tsconfig.
This commit is contained in:
parent
3e71994767
commit
10f92d0178
1 changed files with 11 additions and 2 deletions
|
|
@ -17,11 +17,20 @@
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"baseUrl": "./src",
|
|
||||||
"strictNullChecks": false,
|
"strictNullChecks": false,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"incremental": false
|
"incremental": false,
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"assets/*": ["./src/assets/*"],
|
||||||
|
"components/*": ["./src/components/*"],
|
||||||
|
"lib/*": ["./src/lib/*"],
|
||||||
|
"pages/*": ["./src/pages/*"],
|
||||||
|
"queries/*": ["./src/queries/*"],
|
||||||
|
"store/*": ["./src/store/*"],
|
||||||
|
"styles/*": ["./src/styles/*"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
||||||
"exclude": ["node_modules"]
|
"exclude": ["node_modules"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue