chore: add tvOS example project

This commit is contained in:
Konstantin Späth
2023-08-11 23:16:10 +02:00
parent 30d8146916
commit f4851ba181
66 changed files with 3614 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
const path = require('path');
const pak = require('../../package.json');
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'module-resolver',
{
extensions: ['.tsx', '.ts', '.js', '.json'],
alias: {
[pak.name]: path.join(__dirname, '..', '..', pak.source),
},
},
],
],
};