Kyoo/front/tsconfig.json
Zoe Roux 43cf343841
wip
2025-06-19 09:17:33 +02:00

44 lines
647 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,
"types": [
"node",
"react",
],
"lib": [
"dom",
"esnext"
]
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"exclude": [
"node_modules",
".expo",
"**/test",
"**/dist",
"**/types",
"**/tests"
],
"extends": "expo/tsconfig.base"
}