mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-01-04 11:10:27 -05:00
41 lines
564 B
JSON
41 lines
564 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"strict": true,
|
|
"rootDir": ".",
|
|
"noEmit": true,
|
|
"module": "Preserve",
|
|
"moduleResolution": "Bundler",
|
|
"preserveSymlinks": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"node",
|
|
"react",
|
|
"vite/client"
|
|
],
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".expo",
|
|
"**/test",
|
|
"**/dist",
|
|
"**/types",
|
|
"**/tests"
|
|
]
|
|
}
|