mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-03-17 23:19:14 -04:00
31 lines
672 B
JSON
31 lines
672 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"strict": true,
|
|
"rootDir": ".",
|
|
"noEmit": true,
|
|
"module": "Preserve",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2017",
|
|
"preserveSymlinks": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": ["node", "react"],
|
|
"lib": ["dom", "esnext"]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".expo/types/**/*.ts",
|
|
"expo-env.d.ts",
|
|
"node_modules/uniwind/types.d.ts"
|
|
],
|
|
"exclude": [".expo", "scripts", "**/test", "**/dist", "**/types", "**/tests"],
|
|
"extends": "expo/tsconfig.base"
|
|
}
|