Kyoo/front/tsconfig.json
2026-02-16 12:52:12 +01:00

33 lines
657 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"],
"exclude": [
"node_modules",
".expo",
"scripts",
"**/test",
"**/dist",
"**/types",
"**/tests"
],
"extends": "expo/tsconfig.base"
}